| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | trait GuidTrait |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | * |
||
| 12 | * @ORM\Column(name="guid", type="string", length=255, nullable=true) |
||
| 13 | */ |
||
| 14 | private $guid; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return string |
||
| 18 | */ |
||
| 19 | public function getGuid() |
||
| 20 | { |
||
| 21 | return $this->guid; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $guid |
||
| 26 | */ |
||
| 27 | public function setGuid($guid) |
||
| 30 | } |
||
| 31 | } |
||
| 32 |