GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (32)

src/Events/PostModelDeleted.php (1 issue)

Severity
1
<?php
2
3
namespace AloiaCms\Events;
4
5
use AloiaCms\Models\Contracts\ModelInterface;
6
use Illuminate\Broadcasting\InteractsWithSockets;
7
use Illuminate\Foundation\Events\Dispatchable;
8
use Illuminate\Queue\SerializesModels;
9
10
class PostModelDeleted
11
{
12
    use Dispatchable, InteractsWithSockets, SerializesModels;
0 ignored issues
show
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by AloiaCms\Events\PostModelDeleted: $collectionClass, $id, $relations, $class, $connection, $keyBy
Loading history...
13
14
    public ModelInterface $model;
15
16
    /**
17
     * Create a new event instance.
18
     *
19
     * @return void
20
     */
21
    public function __construct(ModelInterface $model)
22
    {
23
        $this->model = $model;
24
    }
25
}
26