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 (19)

src/Model/Basic/Message.php (1 issue)

Labels
Severity
1
<?php
2
declare(strict_types = 1);
3
4
namespace Innmind\AMQP\Model\Basic;
5
6
use Innmind\AMQP\Model\Basic\Message\{
7
    ContentType,
8
    ContentEncoding,
9
    DeliveryMode,
10
    Priority,
11
    CorrelationId,
12
    ReplyTo,
13
    Expiration,
0 ignored issues
show
The type Innmind\AMQP\Model\Basic\Message\Expiration 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. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
14
    Id,
15
    Type,
16
    UserId,
17
    AppId,
18
};
19
use Innmind\TimeContinuum\{
20
    PointInTimeInterface,
21
    ElapsedPeriod,
22
};
23
use Innmind\Immutable\{
24
    MapInterface,
25
    Str,
26
};
27
28
interface Message
29
{
30
    public function hasContentType(): bool;
31
    public function contentType(): ContentType;
32
    public function withContentType(ContentType $contentType): self;
33
    public function hasContentEncoding(): bool;
34
    public function contentEncoding(): ContentEncoding;
35
    public function withContentEncoding(ContentEncoding $contentEncoding): self;
36
    public function hasHeaders(): bool;
37
38
    /**
39
     * @return MapInterface<string, mixed>
40
     */
41
    public function headers(): MapInterface;
42
    public function withHeaders(MapInterface $headers): self;
43
    public function hasDeliveryMode(): bool;
44
    public function deliveryMode(): DeliveryMode;
45
    public function withDeliveryMode(DeliveryMode $deliveryMode): self;
46
    public function hasPriority(): bool;
47
    public function priority(): Priority;
48
    public function withPriority(Priority $priority): self;
49
    public function hasCorrelationId(): bool;
50
    public function correlationId(): CorrelationId;
51
    public function withCorrelationId(CorrelationId $correlationId): self;
52
    public function hasReplyTo(): bool;
53
    public function replyTo(): ReplyTo;
54
    public function withReplyTo(ReplyTo $replyTo): self;
55
    public function hasExpiration(): bool;
56
    public function expiration(): ElapsedPeriod;
57
    public function withExpiration(ElapsedPeriod $expiration): self;
58
    public function hasId(): bool;
59
    public function id(): Id;
60
    public function withId(Id $id): self;
61
    public function hasTimestamp(): bool;
62
    public function timestamp(): PointInTimeInterface;
63
    public function withTimestamp(PointInTimeInterface $timestamp): self;
64
    public function hasType(): bool;
65
    public function type(): Type;
66
    public function withType(Type $type): self;
67
    public function hasUserId(): bool;
68
    public function userId(): UserId;
69
    public function withUserId(UserId $userId): self;
70
    public function hasAppId(): bool;
71
    public function appId(): AppId;
72
    public function withAppId(AppId $appId): self;
73
    public function body(): Str;
74
}
75