@@ -31,7 +31,7 @@ |
||
31 | 31 | 'ddd' => substr($number, 2, 2), |
32 | 32 | 'phone' => substr($number, 4) |
33 | 33 | ]; |
34 | - $registredBy = $this->peopleService->discoveryPeople(null, null, $phone, $name, null); |
|
34 | + $registredBy = $this->peopleService->discoveryPeople(null, null, $phone, $name, null); |
|
35 | 35 | $task = $this->discoveryOpenTask($provider, $registredBy, $type, $number); |
36 | 36 | |
37 | 37 | return $this->addInteration($registredBy, $message, $task, $type, 'public'); |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | return $this->alterDate; |
292 | 292 | } |
293 | 293 | |
294 | - public function getAnnounce(bool $decode = false): string|array |
|
294 | + public function getAnnounce(bool $decode = false): string | array |
|
295 | 295 | { |
296 | 296 | // Ensure we're decoding a string, even if it was temporarily an array internally |
297 | 297 | $announceString = is_array($this->announce) ? json_encode($this->announce) : $this->announce; |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | return $this->setAnnounce($announce); |
309 | 309 | } |
310 | 310 | |
311 | - public function setAnnounce(string|array|object $announce): self |
|
311 | + public function setAnnounce(string | array | object $announce): self |
|
312 | 312 | { |
313 | 313 | if (is_string($announce)) |
314 | 314 | $announce = json_decode($announce, true); |