1 | <?php |
||
19 | class Form extends AbstractUser |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | * |
||
24 | * @ORM\Column(name="name", type="string", length=255, nullable=false) |
||
25 | */ |
||
26 | protected $name; |
||
27 | |||
28 | /** |
||
29 | * @var array |
||
30 | * |
||
31 | * @ORM\Column(name="configuration", type="json_array", nullable=false) |
||
32 | */ |
||
33 | protected $configuration; |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getName() |
||
42 | |||
43 | /** |
||
44 | * @param string $name |
||
45 | */ |
||
46 | public function setName($name) |
||
50 | |||
51 | /** |
||
52 | * @return array |
||
53 | */ |
||
54 | public function getConfiguration() |
||
58 | |||
59 | /** |
||
60 | * @param array $configuration |
||
61 | */ |
||
62 | public function setConfiguration($configuration) |
||
66 | |||
67 | |||
68 | } |
||
|
|||
69 |
This check marks files that end in a newline character, i.e. an empy line.