@@ -34,8 +34,6 @@ discard block |
||
34 | 34 | /** |
35 | 35 | * Constructor setup info for Pusher |
36 | 36 | * |
37 | - * @param string $channel |
|
38 | - * @param string $event |
|
39 | 37 | * @param array $params |
40 | 38 | */ |
41 | 39 | public function __construct(string $appName, string $appDescription, array $params) |
@@ -48,7 +46,7 @@ discard block |
||
48 | 46 | /** |
49 | 47 | * Handle the pusher request |
50 | 48 | * @todo New Apps can't be created, the system does not take into account the creation of other apps apart from the default. Need to change this |
51 | - * @return void |
|
49 | + * @return boolean |
|
52 | 50 | */ |
53 | 51 | public function handle() |
54 | 52 | { |
@@ -4,8 +4,8 @@ |
||
4 | 4 | |
5 | 5 | use Canvas\Contracts\Queue\QueueableJobInterfase; |
6 | 6 | use Canvas\Jobs\Job; |
7 | -use Phalcon\Di; |
|
8 | 7 | use Canvas\Models\Apps as CanvasApps; |
8 | +use Phalcon\Di; |
|
9 | 9 | use Phalcon\Security\Random; |
10 | 10 | |
11 | 11 | class Apps extends Job implements QueueableJobInterfase |