| 1 | <?php |
||
| 2 | |||
| 3 | namespace Hsy\SimotelConnect\Events; |
||
| 4 | |||
| 5 | use Illuminate\Broadcasting\Channel; |
||
|
0 ignored issues
–
show
|
|||
| 6 | use Illuminate\Broadcasting\InteractsWithSockets; |
||
|
0 ignored issues
–
show
The type
Illuminate\Broadcasting\InteractsWithSockets was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 7 | use Illuminate\Broadcasting\PresenceChannel; |
||
|
0 ignored issues
–
show
The type
Illuminate\Broadcasting\PresenceChannel was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 8 | use Illuminate\Broadcasting\PrivateChannel; |
||
|
0 ignored issues
–
show
The type
Illuminate\Broadcasting\PrivateChannel was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 9 | use Illuminate\Contracts\Broadcasting\ShouldBroadcast; |
||
|
0 ignored issues
–
show
The type
Illuminate\Contracts\Broadcasting\ShouldBroadcast was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 10 | use Illuminate\Foundation\Events\Dispatchable; |
||
|
0 ignored issues
–
show
The type
Illuminate\Foundation\Events\Dispatchable was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 11 | use Illuminate\Queue\SerializesModels; |
||
|
0 ignored issues
–
show
The type
Illuminate\Queue\SerializesModels was not found. Maybe you did not declare it correctly or list all dependencies?
The issue could also be caused by a filter entry in the build configuration.
If the path has been excluded in your configuration, e.g. filter:
dependency_paths: ["lib/*"]
For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths Loading history...
|
|||
| 12 | |||
| 13 | class SimotelEvent |
||
| 14 | { |
||
| 15 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
| 16 | |||
| 17 | public $apiData; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Create a new event instance. |
||
| 21 | * |
||
| 22 | * @param $apiData |
||
| 23 | */ |
||
| 24 | public function __construct($apiData) |
||
| 25 | { |
||
| 26 | $this->apiData = $apiData; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the channels the event should broadcast on. |
||
| 31 | * |
||
| 32 | * @return \Illuminate\Broadcasting\Channel|array |
||
| 33 | */ |
||
| 34 | public function broadcastOn() |
||
| 35 | { |
||
| 36 | return new PrivateChannel('channel-name'); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths