1 | <?php |
||
17 | class Project |
||
18 | { |
||
19 | /** |
||
20 | * @var EntityManagerInterface |
||
21 | */ |
||
22 | protected $em; |
||
23 | |||
24 | /** |
||
25 | * @var CacheClearer |
||
26 | */ |
||
27 | protected $cache_clearer; |
||
28 | |||
29 | /** |
||
30 | * @var Composer |
||
31 | */ |
||
32 | protected $composer; |
||
33 | |||
34 | /** |
||
35 | * @param EntityManagerInterface $em |
||
36 | * @param CacheClearer $cache_clearer |
||
37 | * @param Composer $composer |
||
38 | */ |
||
39 | 2 | public function __construct( |
|
48 | |||
49 | /** |
||
50 | * Update next run date for the propose update task. |
||
51 | */ |
||
52 | 1 | public function onUpdatedProposeUpdateTask() |
|
65 | |||
66 | /** |
||
67 | * On installed or updated try add a Shmop package. |
||
68 | */ |
||
69 | 1 | public function onInstalledOrUpdatedAddShmop() |
|
78 | } |
||
79 |