1 | <?php |
||
18 | class CurrentStep extends AbstractStep implements CurrentStepInterface |
||
19 | { |
||
20 | /** |
||
21 | * @ORM\ManyToOne(targetEntity="AbstractEntry", inversedBy="currentSteps") |
||
22 | * @ORM\JoinColumn(name="entry_id", referencedColumnName="id") |
||
23 | * |
||
24 | * @var EntryInterface |
||
25 | */ |
||
26 | protected $entry; |
||
27 | |||
28 | /** |
||
29 | * @return EntryInterface |
||
30 | */ |
||
31 | public function getEntry() |
||
35 | |||
36 | /** |
||
37 | * @param EntryInterface $entry |
||
38 | * |
||
39 | * @return $this |
||
40 | */ |
||
41 | public function setEntry(EntryInterface $entry) |
||
51 | } |
||
52 |