| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class DissociateEventDto extends AbstractAssociationEventDto |
||
| 8 | { |
||
| 9 | private $id; |
||
| 10 | |||
| 11 | public function __construct(object $source, object $target, $id, array $mapping) |
||
| 12 | { |
||
| 13 | \assert(!empty($id)); |
||
| 14 | |||
| 15 | parent::__construct($source, $target, $mapping); |
||
| 16 | |||
| 17 | $this->id = $id; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getId() |
||
| 23 | } |
||
| 24 | } |
||
| 25 |