| Total Complexity | 0 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class Label extends Model |
||
| 17 | { |
||
| 18 | use Identified, |
||
| 19 | Owned; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | * |
||
| 24 | * @ORM\Column(name="caption", type="string", length=250, nullable=false) |
||
| 25 | */ |
||
| 26 | private $caption; |
||
|
|
|||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | * |
||
| 31 | * @ORM\Column(name="fg_color", type="string", length=15, nullable=false) |
||
| 32 | */ |
||
| 33 | private $fgColor = ''; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @var string |
||
| 37 | * |
||
| 38 | * @ORM\Column(name="bg_color", type="string", length=15, nullable=false) |
||
| 39 | */ |
||
| 40 | private $bgColor = ''; |
||
| 41 | } |
||
| 42 |