1 | <?php |
||
16 | class Cron |
||
17 | { |
||
18 | /** |
||
19 | * @var EventDispatcher |
||
20 | */ |
||
21 | private $dispatcher; |
||
22 | |||
23 | /** |
||
24 | * @Inject({ |
||
25 | * "@EventDispatcher", |
||
26 | * }) |
||
27 | * @param EventDispatcher $dispatcher |
||
28 | */ |
||
29 | public function __construct( |
||
34 | |||
35 | /** |
||
36 | * @param Request $request |
||
37 | * @Route("/expressions/cron/", name="expressions.cron") |
||
38 | * @return bool |
||
39 | */ |
||
40 | public function addCron(Request $request) |
||
54 | } |
||
55 |