src/Entity/Parameter.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Sherlockode\ConfigurationBundle\Model\Parameter as BaseParameter;
  5. #[ORM\Entity]
  6. class Parameter extends BaseParameter
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\Column(name'path'type'string')]
  10.     protected $path;
  11.     #[ORM\Column(name'value'type'text'nullabletrue)]
  12.     protected  $value null;
  13. }