1 | <?php |
||
9 | class EventFactory implements DocumentEventFactory |
||
10 | { |
||
11 | /** |
||
12 | * @var IriGeneratorInterface |
||
13 | */ |
||
14 | private $iriGenerator; |
||
15 | |||
16 | /** |
||
17 | * @param IriGeneratorInterface $iriGenerator |
||
18 | */ |
||
19 | public function __construct(IriGeneratorInterface $iriGenerator) |
||
23 | |||
24 | /** |
||
25 | * @param string $id |
||
26 | * @return OrganizerProjectedToJSONLD |
||
27 | */ |
||
28 | public function createEvent($id) |
||
35 | } |
||
36 |