1 | <?php |
||
17 | class CallWebhookJob implements ShouldQueue |
||
18 | { |
||
19 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
20 | |||
21 | /** @var string */ |
||
22 | public $webhookUrl; |
||
23 | |||
24 | /** @var string */ |
||
25 | public $httpVerb; |
||
26 | |||
27 | /** @var int */ |
||
28 | public $tries; |
||
29 | |||
30 | /** @var int */ |
||
31 | public $requestTimeout; |
||
32 | |||
33 | /** @var string */ |
||
34 | public $backoffStrategyClass; |
||
35 | |||
36 | /** @var string */ |
||
37 | public $signerClass; |
||
38 | |||
39 | /** @var array */ |
||
40 | public $headers = []; |
||
41 | |||
42 | /** @var bool */ |
||
43 | public $verifySsl; |
||
44 | |||
45 | /** @var string */ |
||
46 | public $queue; |
||
47 | |||
48 | /** @var array */ |
||
49 | public $payload = []; |
||
50 | |||
51 | /** @var array */ |
||
52 | public $meta = []; |
||
53 | |||
54 | /** @var array */ |
||
55 | public $tags = []; |
||
56 | |||
57 | /** @var \GuzzleHttp\Psr7\Response|null */ |
||
58 | private $response; |
||
59 | |||
60 | /** @var int|null */ |
||
61 | private $responseStatusCode; |
||
62 | |||
63 | /** @var string */ |
||
64 | private $responseBody; |
||
65 | |||
66 | public function handle() |
||
106 | |||
107 | private function dispatchEvent(string $eventClass) |
||
122 | |||
123 | public function tags() |
||
127 | } |
||
128 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..