1 | <?php |
||
11 | class CentrifugeBroadcaster extends Broadcaster |
||
12 | { |
||
13 | /** |
||
14 | * The Centrifuge SDK instance. |
||
15 | * |
||
16 | * @var \LaraComponents\Centrifuge\Contracts\Centrifuge |
||
17 | */ |
||
18 | protected $centrifuge; |
||
19 | |||
20 | /** |
||
21 | * Create a new broadcaster instance. |
||
22 | * |
||
23 | * @param \LaraComponents\Centrifuge\Contracts\Centrifuge $centrifuge |
||
24 | */ |
||
25 | public function __construct(CentrifugeContract $centrifuge) |
||
29 | |||
30 | /** |
||
31 | * Authenticate the incoming request for a given channel. |
||
32 | * |
||
33 | * @param \Illuminate\Http\Request $request |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function auth($request) |
||
65 | |||
66 | /** |
||
67 | * Return the valid authentication response. |
||
68 | * |
||
69 | * @param \Illuminate\Http\Request $request |
||
70 | * @param mixed $result |
||
71 | * @return mixed |
||
72 | */ |
||
73 | public function validAuthenticationResponse($request, $result) |
||
77 | |||
78 | /** |
||
79 | * Broadcast the given event. |
||
80 | * |
||
81 | * @param array $channels |
||
82 | * @param string $event |
||
83 | * @param array $payload |
||
84 | * @return void |
||
85 | */ |
||
86 | public function broadcast(array $channels, $event, array $payload = []) |
||
98 | |||
99 | /** |
||
100 | * Get the Centrifuge instance. |
||
101 | * |
||
102 | * @return \LaraComponents\Centrifuge\Contracts\Centrifuge |
||
103 | */ |
||
104 | public function getCentrifuge() |
||
108 | } |
||
109 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.