@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $this->config = (object) config('rest'); |
75 | 75 | |
76 | 76 | $locale = $this->config->language ?? null; |
77 | - $this->locale = ! empty($locale) ? $locale : $this->request->getLocale(); |
|
77 | + $this->locale = !empty($locale) ? $locale : $this->request->getLocale(); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | public function _remap(string $method, array $params = []) |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | $class = static::class; |
83 | 83 | |
84 | 84 | // Bien sûr qu'il existe, mais peuvent-ils en faire quelque chose ? |
85 | - if (! method_exists($class, $method)) { |
|
85 | + if (!method_exists($class, $method)) { |
|
86 | 86 | return $this->respondNotImplemented($this->_translate('notImplemented', [$class, $method])); |
87 | 87 | } |
88 | 88 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | return $this->respondBadRequest($message, $ex->getCode(), $errors); |
130 | 130 | } |
131 | 131 | |
132 | - if (! on_dev()) { |
|
132 | + if (!on_dev()) { |
|
133 | 133 | $url = explode('?', $this->request->getRequestTarget())[0]; |
134 | 134 | |
135 | 135 | return $this->respondBadRequest($this->_translate('badUsed', [$url])); |
@@ -182,10 +182,10 @@ discard block |
||
182 | 182 | $response = [ |
183 | 183 | $this->config->field['message'] ?? 'message' => $message, |
184 | 184 | ]; |
185 | - if (! empty($this->config->field['status'])) { |
|
185 | + if (!empty($this->config->field['status'])) { |
|
186 | 186 | $response[$this->config->field['status']] = false; |
187 | 187 | } |
188 | - if (! empty($this->config->field['code'])) { |
|
188 | + if (!empty($this->config->field['code'])) { |
|
189 | 189 | $response[$this->config->field['code']] = $code; |
190 | 190 | } |
191 | 191 | if ($errors !== []) { |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | $response = [ |
215 | 215 | $this->config->field['message'] ?? 'message' => $message, |
216 | 216 | ]; |
217 | - if (! empty($this->config->field['status'])) { |
|
217 | + if (!empty($this->config->field['status'])) { |
|
218 | 218 | $response[$this->config->field['status']] = true; |
219 | 219 | } |
220 | 220 | if (is_array($result)) { |
@@ -419,13 +419,13 @@ discard block |
||
419 | 419 | } |
420 | 420 | |
421 | 421 | // Si la méthode de format existe, appelle et renvoie la sortie dans ce format |
422 | - if (! empty($mime)) { |
|
422 | + if (!empty($mime)) { |
|
423 | 423 | $output = Formatter::type($mime)->format($data); |
424 | 424 | |
425 | 425 | // Définit l'en-tête du format |
426 | 426 | // Ensuite, vérifiez si le client a demandé un rappel, et si la sortie contient ce rappel : |
427 | 427 | $callback = $this->request->getQuery('callback'); |
428 | - if (! empty($callback) && $mime === $this->mimes['json'] && preg_match('/^' . $callback . '/', $output)) { |
|
428 | + if (!empty($callback) && $mime === $this->mimes['json'] && preg_match('/^' . $callback . '/', $output)) { |
|
429 | 429 | $this->response = $this->response->withType($this->mimes['jsonp']); |
430 | 430 | } else { |
431 | 431 | $this->response = $this->response->withType($mime === $this->mimes['array'] ? $this->mimes['json'] : $mime); |
@@ -481,22 +481,22 @@ discard block |
||
481 | 481 | private function checkProcess(): bool|ResponseInterface |
482 | 482 | { |
483 | 483 | // Verifie si la requete est en ajax |
484 | - if (! $this->request->is('ajax') && $this->config->ajax_only) { |
|
484 | + if (!$this->request->is('ajax') && $this->config->ajax_only) { |
|
485 | 485 | return $this->respondNotAcceptable($this->_translate('ajaxOnly')); |
486 | 486 | } |
487 | 487 | |
488 | 488 | // Verifie si la requete est en https |
489 | - if (! $this->request->is('https') && $this->config->force_https) { |
|
489 | + if (!$this->request->is('https') && $this->config->force_https) { |
|
490 | 490 | return $this->respondForbidden($this->_translate('unsupported')); |
491 | 491 | } |
492 | 492 | |
493 | 493 | // Verifie si la methode utilisee pour la requete est autorisee |
494 | - if (! in_array(strtoupper($this->request->getMethod()), $this->config->allowed_methods, true)) { |
|
494 | + if (!in_array(strtoupper($this->request->getMethod()), $this->config->allowed_methods, true)) { |
|
495 | 495 | return $this->respondNotAcceptable($this->_translate('unknownMethod')); |
496 | 496 | } |
497 | 497 | |
498 | 498 | // Verifie que l'ip qui emet la requete n'est pas dans la blacklist |
499 | - if (! empty($this->config->ip_blacklis)) { |
|
499 | + if (!empty($this->config->ip_blacklis)) { |
|
500 | 500 | $this->config->ip_blacklist = implode(',', $this->config->ip_blacklist); |
501 | 501 | |
502 | 502 | // Correspond à une adresse IP dans une liste noire, par ex. 127.0.0.0, 0.0.0.0 |
@@ -509,7 +509,7 @@ discard block |
||
509 | 509 | } |
510 | 510 | |
511 | 511 | // Verifie que l'ip qui emet la requete est dans la whitelist |
512 | - if (! empty($this->config->ip_whitelist)) { |
|
512 | + if (!empty($this->config->ip_whitelist)) { |
|
513 | 513 | $whitelist = $this->config->ip_whitelist; |
514 | 514 | $whitelist[] = '127.0.0.1'; |
515 | 515 | $whitelist[] = '0.0.0.0'; |
@@ -517,13 +517,13 @@ discard block |
||
517 | 517 | // coupez les espaces de début et de fin des ip |
518 | 518 | $whitelist = array_map('trim', $whitelist); |
519 | 519 | |
520 | - if (! in_array($this->request->clientIp(), $whitelist, true)) { |
|
520 | + if (!in_array($this->request->clientIp(), $whitelist, true)) { |
|
521 | 521 | return $this->respondUnauthorized($this->_translate('ipUnauthorized')); |
522 | 522 | } |
523 | 523 | } |
524 | 524 | |
525 | 525 | // Verifie l'authentification du client |
526 | - if (false !== $this->config->auth && ! $this->request->is('options') && 'bearer' === strtolower($this->config->auth)) { |
|
526 | + if (false !== $this->config->auth && !$this->request->is('options') && 'bearer' === strtolower($this->config->auth)) { |
|
527 | 527 | $token = $this->getBearerToken(); |
528 | 528 | if ($token === null || $token === '' || $token === '0') { |
529 | 529 | return $this->respondInvalidToken($this->_translate('tokenNotFound')); |
@@ -147,12 +147,12 @@ discard block |
||
147 | 147 | return ''; |
148 | 148 | } |
149 | 149 | |
150 | - if (! empty($userInfo = $this->getUserInfo())) { |
|
150 | + if (!empty($userInfo = $this->getUserInfo())) { |
|
151 | 151 | $authority = $userInfo . '@' . $authority; |
152 | 152 | } |
153 | 153 | |
154 | 154 | // N'ajoute pas de port s'il s'agit d'un port standard pour ce schéma |
155 | - if ($this->port !== null && $this->port !== 0 && ! $ignorePort && $this->port !== $this->defaultPorts[$this->scheme]) { |
|
155 | + if ($this->port !== null && $this->port !== 0 && !$ignorePort && $this->port !== $this->defaultPorts[$this->scheme]) { |
|
156 | 156 | $authority .= ':' . $this->port; |
157 | 157 | } |
158 | 158 | |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | $vars = $this->query; |
219 | 219 | |
220 | 220 | if (array_key_exists('except', $options)) { |
221 | - if (! is_array($options['except'])) { |
|
221 | + if (!is_array($options['except'])) { |
|
222 | 222 | $options['except'] = [$options['except']]; |
223 | 223 | } |
224 | 224 | |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | } elseif (array_key_exists('only', $options)) { |
229 | 229 | $temp = []; |
230 | 230 | |
231 | - if (! is_array($options['only'])) { |
|
231 | + if (!is_array($options['only'])) { |
|
232 | 232 | $options['only'] = [$options['only']]; |
233 | 233 | } |
234 | 234 | |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | } |
352 | 352 | |
353 | 353 | if (isset($path) && $path !== '') { |
354 | - $uri .= ! str_ends_with($uri, '/') |
|
354 | + $uri .= !str_ends_with($uri, '/') |
|
355 | 355 | ? '/' . ltrim($path, '/') |
356 | 356 | : ltrim($path, '/'); |
357 | 357 | } |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | { |
375 | 375 | $parts = parse_url($str); |
376 | 376 | |
377 | - if (! isset($parts['path'])) { |
|
377 | + if (!isset($parts['path'])) { |
|
378 | 378 | $parts['path'] = $this->getPath(); |
379 | 379 | } |
380 | 380 | |
@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | $temp = []; |
624 | 624 | |
625 | 625 | foreach ($this->query as $key => $value) { |
626 | - if (! in_array($key, $params, true)) { |
|
626 | + if (!in_array($key, $params, true)) { |
|
627 | 627 | continue; |
628 | 628 | } |
629 | 629 | |
@@ -698,19 +698,19 @@ discard block |
||
698 | 698 | */ |
699 | 699 | protected function applyParts(array $parts) |
700 | 700 | { |
701 | - if (! empty($parts['host'])) { |
|
701 | + if (!empty($parts['host'])) { |
|
702 | 702 | $this->host = $parts['host']; |
703 | 703 | } |
704 | - if (! empty($parts['user'])) { |
|
704 | + if (!empty($parts['user'])) { |
|
705 | 705 | $this->user = $parts['user']; |
706 | 706 | } |
707 | - if (! empty($parts['path'])) { |
|
707 | + if (!empty($parts['path'])) { |
|
708 | 708 | $this->path = $this->filterPath($parts['path']); |
709 | 709 | } |
710 | - if (! empty($parts['query'])) { |
|
710 | + if (!empty($parts['query'])) { |
|
711 | 711 | $this->setQuery($parts['query']); |
712 | 712 | } |
713 | - if (! empty($parts['fragment'])) { |
|
713 | + if (!empty($parts['fragment'])) { |
|
714 | 714 | $this->fragment = $parts['fragment']; |
715 | 715 | } |
716 | 716 | |
@@ -881,7 +881,7 @@ discard block |
||
881 | 881 | $basePath = trim($baseUri->getPath(), '/') . '/'; |
882 | 882 | $trimPath = ltrim($path, '/'); |
883 | 883 | |
884 | - if ($basePath !== '/' && ! str_starts_with($trimPath, $basePath)) { |
|
884 | + if ($basePath !== '/' && !str_starts_with($trimPath, $basePath)) { |
|
885 | 885 | $path = $basePath . $trimPath; |
886 | 886 | } |
887 | 887 |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | $this->cookies = $config['cookies']; |
233 | 233 | |
234 | 234 | if (isset($config['uri'])) { |
235 | - if (! $config['uri'] instanceof UriInterface) { |
|
235 | + if (!$config['uri'] instanceof UriInterface) { |
|
236 | 236 | throw new FrameworkException('The `uri` key must be an instance of ' . UriInterface::class); |
237 | 237 | } |
238 | 238 | $uri = $config['uri']; |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | $this->stream = $stream; |
266 | 266 | |
267 | 267 | $post = $config['post']; |
268 | - if (! (is_array($post) || is_object($post) || $post === null)) { |
|
268 | + if (!(is_array($post) || is_object($post) || $post === null)) { |
|
269 | 269 | throw new InvalidArgumentException(sprintf( |
270 | 270 | 'La clé `post` doit être un tableau, un objet ou null. On a obtenu `%s` à la place.', |
271 | 271 | get_debug_type($post) |
@@ -448,7 +448,7 @@ discard block |
||
448 | 448 | } |
449 | 449 | |
450 | 450 | $type = strtolower($type); |
451 | - if (! isset(static::$_detectors[$type])) { |
|
451 | + if (!isset(static::$_detectors[$type])) { |
|
452 | 452 | return false; |
453 | 453 | } |
454 | 454 | if ($args !== []) { |
@@ -600,7 +600,7 @@ discard block |
||
600 | 600 | public function isAll(array $types): bool |
601 | 601 | { |
602 | 602 | foreach ($types as $type) { |
603 | - if (! $this->is($type)) { |
|
603 | + if (!$this->is($type)) { |
|
604 | 604 | return false; |
605 | 605 | } |
606 | 606 | } |
@@ -704,7 +704,7 @@ discard block |
||
704 | 704 | protected function normalizeHeaderName(string $name): string |
705 | 705 | { |
706 | 706 | $name = str_replace('-', '_', strtoupper($name)); |
707 | - if (! in_array($name, ['CONTENT_LENGTH', 'CONTENT_TYPE'], true)) { |
|
707 | + if (!in_array($name, ['CONTENT_LENGTH', 'CONTENT_TYPE'], true)) { |
|
708 | 708 | $name = 'HTTP_' . $name; |
709 | 709 | } |
710 | 710 | |
@@ -890,7 +890,7 @@ discard block |
||
890 | 890 | { |
891 | 891 | $new = clone $this; |
892 | 892 | |
893 | - if (! preg_match('/^[!#$%&\'*+.^_`\|~0-9a-z-]+$/i', $method)) { |
|
893 | + if (!preg_match('/^[!#$%&\'*+.^_`\|~0-9a-z-]+$/i', $method)) { |
|
894 | 894 | throw new InvalidArgumentException(sprintf( |
895 | 895 | 'Méthode HTTP non prise en charge "%s" fournie', |
896 | 896 | $method |
@@ -1150,7 +1150,7 @@ discard block |
||
1150 | 1150 | } |
1151 | 1151 | } |
1152 | 1152 | |
1153 | - if (! isset($accept[$prefValue])) { |
|
1153 | + if (!isset($accept[$prefValue])) { |
|
1154 | 1154 | $accept[$prefValue] = []; |
1155 | 1155 | } |
1156 | 1156 | if ($prefValue !== '' && $prefValue !== '0') { |
@@ -1228,7 +1228,7 @@ discard block |
||
1228 | 1228 | if ($name === null) { |
1229 | 1229 | return $this->data; |
1230 | 1230 | } |
1231 | - if (! is_array($this->data)) { |
|
1231 | + if (!is_array($this->data)) { |
|
1232 | 1232 | return $default; |
1233 | 1233 | } |
1234 | 1234 | |
@@ -1368,7 +1368,7 @@ discard block |
||
1368 | 1368 | */ |
1369 | 1369 | public function withProtocolVersion(string $version): static |
1370 | 1370 | { |
1371 | - if (! preg_match('/^(1\.[01]|2(\.[0])?)$/', $version)) { |
|
1371 | + if (!preg_match('/^(1\.[01]|2(\.[0])?)$/', $version)) { |
|
1372 | 1372 | throw new InvalidArgumentException(sprintf('Version de protocole `%s` non prise en charge fournie.', $version)); |
1373 | 1373 | } |
1374 | 1374 | $new = clone $this; |
@@ -1390,7 +1390,7 @@ discard block |
||
1390 | 1390 | public function getEnv(string $key, ?string $default = null): ?string |
1391 | 1391 | { |
1392 | 1392 | $key = strtoupper($key); |
1393 | - if (! array_key_exists($key, $this->_environment) || null === $this->_environment[$key]) { |
|
1393 | + if (!array_key_exists($key, $this->_environment) || null === $this->_environment[$key]) { |
|
1394 | 1394 | $this->_environment[$key] = env($key, $default); |
1395 | 1395 | } |
1396 | 1396 | |
@@ -1607,7 +1607,7 @@ discard block |
||
1607 | 1607 | $file = Arr::get($this->uploadedFiles, $path); |
1608 | 1608 | if (is_array($file)) { |
1609 | 1609 | foreach ($file as $f) { |
1610 | - if (! ($f instanceof UploadedFile)) { |
|
1610 | + if (!($f instanceof UploadedFile)) { |
|
1611 | 1611 | return null; |
1612 | 1612 | } |
1613 | 1613 | } |
@@ -1615,7 +1615,7 @@ discard block |
||
1615 | 1615 | return $file; |
1616 | 1616 | } |
1617 | 1617 | |
1618 | - if (! ($file instanceof UploadedFileInterface)) { |
|
1618 | + if (!($file instanceof UploadedFileInterface)) { |
|
1619 | 1619 | return null; |
1620 | 1620 | } |
1621 | 1621 | |
@@ -1663,7 +1663,7 @@ discard block |
||
1663 | 1663 | continue; |
1664 | 1664 | } |
1665 | 1665 | |
1666 | - if (! $file instanceof UploadedFileInterface) { |
|
1666 | + if (!$file instanceof UploadedFileInterface) { |
|
1667 | 1667 | throw new InvalidArgumentException("Fichier invalide à `{$path}{$key}`"); |
1668 | 1668 | } |
1669 | 1669 | } |
@@ -1716,7 +1716,7 @@ discard block |
||
1716 | 1716 | if (empty($host = $uri->getHost())) { |
1717 | 1717 | return $new; |
1718 | 1718 | } |
1719 | - if (! empty($port = $uri->getPort())) { |
|
1719 | + if (!empty($port = $uri->getPort())) { |
|
1720 | 1720 | $host .= ':' . $port; |
1721 | 1721 | } |
1722 | 1722 | $new->_environment['HTTP_HOST'] = $host; |
@@ -1812,7 +1812,7 @@ discard block |
||
1812 | 1812 | $validLocales = config('app.supported_locales'); |
1813 | 1813 | // S'il ne s'agit pas d'un paramètre régional valide, définissez-le |
1814 | 1814 | // aux paramètres régionaux par défaut du site. |
1815 | - if (! in_array($locale, $validLocales, true)) { |
|
1815 | + if (!in_array($locale, $validLocales, true)) { |
|
1816 | 1816 | $locale = config('app.language'); |
1817 | 1817 | } |
1818 | 1818 |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public function __construct(protected array $listeners = []) |
43 | 43 | { |
44 | - if (! array_key_exists(self::WILDCARD, $this->listeners)) { |
|
44 | + if (!array_key_exists(self::WILDCARD, $this->listeners)) { |
|
45 | 45 | $this->listeners[self::WILDCARD] = []; |
46 | 46 | } |
47 | 47 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | return array_filter($this->listeners, static fn ($key) => $key !== self::WILDCARD, ARRAY_FILTER_USE_KEY); |
53 | 53 | } |
54 | 54 | |
55 | - if (! array_key_exists($event, $this->listeners)) { |
|
55 | + if (!array_key_exists($event, $this->listeners)) { |
|
56 | 56 | return []; |
57 | 57 | } |
58 | 58 | |
@@ -76,14 +76,14 @@ discard block |
||
76 | 76 | */ |
77 | 77 | public function on(string $event, callable $callback, int $priority = 0): bool |
78 | 78 | { |
79 | - if (! array_key_exists($event, $this->listeners)) { |
|
79 | + if (!array_key_exists($event, $this->listeners)) { |
|
80 | 80 | $this->listeners[$event] = []; |
81 | 81 | } |
82 | - if (! array_key_exists($priority, $this->listeners[$event])) { |
|
82 | + if (!array_key_exists($priority, $this->listeners[$event])) { |
|
83 | 83 | $this->listeners[$event][$priority] = []; |
84 | 84 | } |
85 | 85 | |
86 | - if (! in_array($callback, $this->listeners[$event][$priority], true)) { |
|
86 | + if (!in_array($callback, $this->listeners[$event][$priority], true)) { |
|
87 | 87 | $this->listeners[$event][$priority][] = $callback; |
88 | 88 | |
89 | 89 | return true; |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | */ |
106 | 106 | public function off(string $event, callable $callback): bool |
107 | 107 | { |
108 | - if (! array_key_exists($event, $this->listeners) || ! $this->listeners[$event]) { |
|
108 | + if (!array_key_exists($event, $this->listeners) || !$this->listeners[$event]) { |
|
109 | 109 | return false; |
110 | 110 | } |
111 | 111 | |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | */ |
137 | 137 | public function emit($event, $target = null, $argv = []) |
138 | 138 | { |
139 | - if (! ($event instanceof EventInterface)) { |
|
139 | + if (!($event instanceof EventInterface)) { |
|
140 | 140 | $event = new Event($event, $target, $argv); |
141 | 141 | } else { |
142 | 142 | if ($target) { |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | } |
149 | 149 | |
150 | 150 | $eventName = $event->getName(); |
151 | - if (! array_key_exists($eventName, $this->listeners)) { |
|
151 | + if (!array_key_exists($eventName, $this->listeners)) { |
|
152 | 152 | $this->listeners[$eventName] = []; |
153 | 153 | } |
154 | 154 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | ksort($events, SORT_NUMERIC); |
159 | 159 | |
160 | 160 | foreach ($events as $priority) { |
161 | - if (! is_array($priority)) { |
|
161 | + if (!is_array($priority)) { |
|
162 | 162 | continue; |
163 | 163 | } |
164 | 164 |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | |
67 | 67 | $this->renderVars['file'] = $this->getRenderedFile($options, $this->renderVars['view'], $this->ext); |
68 | 68 | |
69 | - if (! empty($layout = $this->layout)) { |
|
69 | + if (!empty($layout = $this->layout)) { |
|
70 | 70 | $pathinfo = pathinfo($layout, PATHINFO_EXTENSION); |
71 | 71 | if ($pathinfo === [] || $pathinfo === '' || $pathinfo === '0') { |
72 | 72 | $layout .= '.' . $this->ext; |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $this->engine->assign($this->data); |
78 | 78 | |
79 | 79 | // Doit-on mettre en cache? |
80 | - if (! empty($this->renderVars['options']['cache_name']) || ! empty($this->renderVars['options']['cache'])) { |
|
80 | + if (!empty($this->renderVars['options']['cache_name']) || !empty($this->renderVars['options']['cache'])) { |
|
81 | 81 | $this->enableCache(); |
82 | 82 | $this->engine->setCacheLifetime(60 * ($this->renderVars['options']['cache'] ?? 60)); |
83 | 83 | $this->engine->setCompileId($this->renderVars['options']['cache_name'] ?? null); |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | $class = $this->translateURI($segment); |
162 | 162 | |
163 | 163 | // dès que nous rencontrons un segment qui n'est pas compatible PSR-4, arrêter la recherche |
164 | - if (! $this->isValidSegment($class)) { |
|
164 | + if (!$this->isValidSegment($class)) { |
|
165 | 165 | return false; |
166 | 166 | } |
167 | 167 | |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | throw new MethodNotFoundException(); |
388 | 388 | } |
389 | 389 | |
390 | - if (! $refMethod->isPublic()) { |
|
390 | + if (!$refMethod->isPublic()) { |
|
391 | 391 | throw new MethodNotFoundException(); |
392 | 392 | } |
393 | 393 | |
@@ -449,7 +449,7 @@ discard block |
||
449 | 449 | return; |
450 | 450 | } |
451 | 451 | |
452 | - if (! in_array(ltrim($classname, '\\'), get_declared_classes(), true)) { |
|
452 | + if (!in_array(ltrim($classname, '\\'), get_declared_classes(), true)) { |
|
453 | 453 | throw new PageNotFoundException( |
454 | 454 | '"' . $classname . '" n\'a pas été trouvé.' |
455 | 455 | ); |
@@ -473,7 +473,7 @@ discard block |
||
473 | 473 | // Mais si un visiteur navigue vers l'URI `controller/somemethod`, `getSomemethod()` sera vérifié, et `method_exists()` retournera true parce que les noms de méthodes en PHP sont insensibles à la casse. |
474 | 474 | method_exists($this->controller, $method) |
475 | 475 | // Mais nous n'autorisons pas `controller/somemethod`, donc vérifiez le nom exact de la méthode. |
476 | - && ! in_array($method, get_class_methods($this->controller), true) |
|
476 | + && !in_array($method, get_class_methods($this->controller), true) |
|
477 | 477 | ) { |
478 | 478 | throw new PageNotFoundException( |
479 | 479 | '"' . $this->controller . '::' . $method . '()" n\'a pas été trouvé.' |
@@ -2,1036 +2,1036 @@ |
||
2 | 2 | |
3 | 3 | $ignoreErrors = []; |
4 | 4 | $ignoreErrors[] = [ |
5 | - // identifier: method.notFound |
|
6 | - 'message' => '#^Call to an undefined method BlitzPHP\\\\Traits\\\\Mixins\\\\HigherOrderCollectionProxy\\:\\:__invoke\\(\\)\\.$#', |
|
7 | - 'count' => 1, |
|
8 | - 'path' => __DIR__ . '/src/Cli/Commands/Utilities/About.php', |
|
5 | + // identifier: method.notFound |
|
6 | + 'message' => '#^Call to an undefined method BlitzPHP\\\\Traits\\\\Mixins\\\\HigherOrderCollectionProxy\\:\\:__invoke\\(\\)\\.$#', |
|
7 | + 'count' => 1, |
|
8 | + 'path' => __DIR__ . '/src/Cli/Commands/Utilities/About.php', |
|
9 | 9 | ]; |
10 | 10 | $ignoreErrors[] = [ |
11 | - // identifier: method.notFound |
|
12 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#', |
|
13 | - 'count' => 1, |
|
14 | - 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
11 | + // identifier: method.notFound |
|
12 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#', |
|
13 | + 'count' => 1, |
|
14 | + 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
15 | 15 | ]; |
16 | 16 | $ignoreErrors[] = [ |
17 | - // identifier: method.notFound |
|
18 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#', |
|
19 | - 'count' => 1, |
|
20 | - 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
17 | + // identifier: method.notFound |
|
18 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#', |
|
19 | + 'count' => 1, |
|
20 | + 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
21 | 21 | ]; |
22 | 22 | $ignoreErrors[] = [ |
23 | - // identifier: method.notFound |
|
24 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#', |
|
25 | - 'count' => 1, |
|
26 | - 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
23 | + // identifier: method.notFound |
|
24 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#', |
|
25 | + 'count' => 1, |
|
26 | + 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
27 | 27 | ]; |
28 | 28 | $ignoreErrors[] = [ |
29 | - // identifier: method.notFound |
|
30 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#', |
|
31 | - 'count' => 1, |
|
32 | - 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
29 | + // identifier: method.notFound |
|
30 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#', |
|
31 | + 'count' => 1, |
|
32 | + 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
33 | 33 | ]; |
34 | 34 | $ignoreErrors[] = [ |
35 | - // identifier: property.notFound |
|
36 | - 'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#', |
|
37 | - 'count' => 1, |
|
38 | - 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
35 | + // identifier: property.notFound |
|
36 | + 'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#', |
|
37 | + 'count' => 1, |
|
38 | + 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
39 | 39 | ]; |
40 | 40 | $ignoreErrors[] = [ |
41 | - // identifier: method.notFound |
|
42 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#', |
|
43 | - 'count' => 1, |
|
44 | - 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
41 | + // identifier: method.notFound |
|
42 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#', |
|
43 | + 'count' => 1, |
|
44 | + 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
45 | 45 | ]; |
46 | 46 | $ignoreErrors[] = [ |
47 | - // identifier: method.notFound |
|
48 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#', |
|
49 | - 'count' => 1, |
|
50 | - 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
47 | + // identifier: method.notFound |
|
48 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#', |
|
49 | + 'count' => 1, |
|
50 | + 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
51 | 51 | ]; |
52 | 52 | $ignoreErrors[] = [ |
53 | - // identifier: staticMethod.notFound |
|
54 | - 'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#', |
|
55 | - 'count' => 1, |
|
56 | - 'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php', |
|
53 | + // identifier: staticMethod.notFound |
|
54 | + 'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#', |
|
55 | + 'count' => 1, |
|
56 | + 'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php', |
|
57 | 57 | ]; |
58 | 58 | $ignoreErrors[] = [ |
59 | - // identifier: method.templateTypeNotInParameter |
|
60 | - 'message' => '#^Template type T of method BlitzPHP\\\\Container\\\\Container\\:\\:make\\(\\) is not referenced in a parameter\\.$#', |
|
61 | - 'count' => 1, |
|
62 | - 'path' => __DIR__ . '/src/Container/Container.php', |
|
59 | + // identifier: method.templateTypeNotInParameter |
|
60 | + 'message' => '#^Template type T of method BlitzPHP\\\\Container\\\\Container\\:\\:make\\(\\) is not referenced in a parameter\\.$#', |
|
61 | + 'count' => 1, |
|
62 | + 'path' => __DIR__ . '/src/Container/Container.php', |
|
63 | 63 | ]; |
64 | 64 | $ignoreErrors[] = [ |
65 | - // identifier: property.notFound |
|
66 | - 'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#', |
|
67 | - 'count' => 1, |
|
68 | - 'path' => __DIR__ . '/src/Controllers/RestController.php', |
|
65 | + // identifier: property.notFound |
|
66 | + 'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#', |
|
67 | + 'count' => 1, |
|
68 | + 'path' => __DIR__ . '/src/Controllers/RestController.php', |
|
69 | 69 | ]; |
70 | 70 | $ignoreErrors[] = [ |
71 | - // identifier: class.notFound |
|
72 | - 'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#', |
|
73 | - 'count' => 1, |
|
74 | - 'path' => __DIR__ . '/src/Debug/Debugger.php', |
|
71 | + // identifier: class.notFound |
|
72 | + 'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#', |
|
73 | + 'count' => 1, |
|
74 | + 'path' => __DIR__ . '/src/Debug/Debugger.php', |
|
75 | 75 | ]; |
76 | 76 | $ignoreErrors[] = [ |
77 | - // identifier: booleanNot.alwaysFalse |
|
78 | - 'message' => '#^Negated boolean expression is always false\\.$#', |
|
79 | - 'count' => 1, |
|
80 | - 'path' => __DIR__ . '/src/Debug/Toolbar.php', |
|
77 | + // identifier: booleanNot.alwaysFalse |
|
78 | + 'message' => '#^Negated boolean expression is always false\\.$#', |
|
79 | + 'count' => 1, |
|
80 | + 'path' => __DIR__ . '/src/Debug/Toolbar.php', |
|
81 | 81 | ]; |
82 | 82 | $ignoreErrors[] = [ |
83 | - // identifier: variable.undefined |
|
84 | - 'message' => '#^Variable \\$result might not be defined\\.$#', |
|
85 | - 'count' => 1, |
|
86 | - 'path' => __DIR__ . '/src/Debug/Toolbar.php', |
|
83 | + // identifier: variable.undefined |
|
84 | + 'message' => '#^Variable \\$result might not be defined\\.$#', |
|
85 | + 'count' => 1, |
|
86 | + 'path' => __DIR__ . '/src/Debug/Toolbar.php', |
|
87 | 87 | ]; |
88 | 88 | $ignoreErrors[] = [ |
89 | - // identifier: if.alwaysTrue |
|
90 | - 'message' => '#^If condition is always true\\.$#', |
|
91 | - 'count' => 1, |
|
92 | - 'path' => __DIR__ . '/src/Event/EventManager.php', |
|
89 | + // identifier: if.alwaysTrue |
|
90 | + 'message' => '#^If condition is always true\\.$#', |
|
91 | + 'count' => 1, |
|
92 | + 'path' => __DIR__ . '/src/Event/EventManager.php', |
|
93 | 93 | ]; |
94 | 94 | $ignoreErrors[] = [ |
95 | - // identifier: phpDoc.parseError |
|
96 | - 'message' => '#^PHPDoc tag @method has invalid value \\(static void configure\\(callable \\$callback\\(RouteBuilder \\$route\\)\\) Configure les parametres de routing\\.\\)\\: Unexpected token "\\(", expected \'\\)\' at offset 63$#', |
|
97 | - 'count' => 1, |
|
98 | - 'path' => __DIR__ . '/src/Facades/Route.php', |
|
95 | + // identifier: phpDoc.parseError |
|
96 | + 'message' => '#^PHPDoc tag @method has invalid value \\(static void configure\\(callable \\$callback\\(RouteBuilder \\$route\\)\\) Configure les parametres de routing\\.\\)\\: Unexpected token "\\(", expected \'\\)\' at offset 63$#', |
|
97 | + 'count' => 1, |
|
98 | + 'path' => __DIR__ . '/src/Facades/Route.php', |
|
99 | 99 | ]; |
100 | 100 | $ignoreErrors[] = [ |
101 | - // identifier: return.unusedType |
|
102 | - 'message' => '#^Function img\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
103 | - 'count' => 1, |
|
104 | - 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
101 | + // identifier: return.unusedType |
|
102 | + 'message' => '#^Function img\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
103 | + 'count' => 1, |
|
104 | + 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
105 | 105 | ]; |
106 | 106 | $ignoreErrors[] = [ |
107 | - // identifier: return.unusedType |
|
108 | - 'message' => '#^Function less_styles\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
109 | - 'count' => 1, |
|
110 | - 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
107 | + // identifier: return.unusedType |
|
108 | + 'message' => '#^Function less_styles\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
109 | + 'count' => 1, |
|
110 | + 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
111 | 111 | ]; |
112 | 112 | $ignoreErrors[] = [ |
113 | - // identifier: return.unusedType |
|
114 | - 'message' => '#^Function lib_scripts\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
115 | - 'count' => 1, |
|
116 | - 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
113 | + // identifier: return.unusedType |
|
114 | + 'message' => '#^Function lib_scripts\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
115 | + 'count' => 1, |
|
116 | + 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
117 | 117 | ]; |
118 | 118 | $ignoreErrors[] = [ |
119 | - // identifier: return.unusedType |
|
120 | - 'message' => '#^Function lib_styles\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
121 | - 'count' => 1, |
|
122 | - 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
119 | + // identifier: return.unusedType |
|
120 | + 'message' => '#^Function lib_styles\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
121 | + 'count' => 1, |
|
122 | + 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
123 | 123 | ]; |
124 | 124 | $ignoreErrors[] = [ |
125 | - // identifier: return.unusedType |
|
126 | - 'message' => '#^Function scripts\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
127 | - 'count' => 1, |
|
128 | - 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
125 | + // identifier: return.unusedType |
|
126 | + 'message' => '#^Function scripts\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
127 | + 'count' => 1, |
|
128 | + 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
129 | 129 | ]; |
130 | 130 | $ignoreErrors[] = [ |
131 | - // identifier: return.unusedType |
|
132 | - 'message' => '#^Function styles\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
133 | - 'count' => 1, |
|
134 | - 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
131 | + // identifier: return.unusedType |
|
132 | + 'message' => '#^Function styles\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
133 | + 'count' => 1, |
|
134 | + 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
135 | 135 | ]; |
136 | 136 | $ignoreErrors[] = [ |
137 | - // identifier: booleanNot.alwaysFalse |
|
138 | - 'message' => '#^Negated boolean expression is always false\\.$#', |
|
139 | - 'count' => 1, |
|
140 | - 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
137 | + // identifier: booleanNot.alwaysFalse |
|
138 | + 'message' => '#^Negated boolean expression is always false\\.$#', |
|
139 | + 'count' => 1, |
|
140 | + 'path' => __DIR__ . '/src/Helpers/assets.php', |
|
141 | 141 | ]; |
142 | 142 | $ignoreErrors[] = [ |
143 | - // identifier: return.unusedType |
|
144 | - 'message' => '#^Function logger\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
145 | - 'count' => 1, |
|
146 | - 'path' => __DIR__ . '/src/Helpers/common.php', |
|
143 | + // identifier: return.unusedType |
|
144 | + 'message' => '#^Function logger\\(\\) never returns void so it can be removed from the return type\\.$#', |
|
145 | + 'count' => 1, |
|
146 | + 'path' => __DIR__ . '/src/Helpers/common.php', |
|
147 | 147 | ]; |
148 | 148 | $ignoreErrors[] = [ |
149 | - // identifier: variable.undefined |
|
150 | - 'message' => '#^Variable \\$result might not be defined\\.$#', |
|
151 | - 'count' => 1, |
|
152 | - 'path' => __DIR__ . '/src/Helpers/filesystem.php', |
|
149 | + // identifier: variable.undefined |
|
150 | + 'message' => '#^Variable \\$result might not be defined\\.$#', |
|
151 | + 'count' => 1, |
|
152 | + 'path' => __DIR__ . '/src/Helpers/filesystem.php', |
|
153 | 153 | ]; |
154 | 154 | $ignoreErrors[] = [ |
155 | - // identifier: method.notFound |
|
156 | - 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#', |
|
157 | - 'count' => 1, |
|
158 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
155 | + // identifier: method.notFound |
|
156 | + 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#', |
|
157 | + 'count' => 1, |
|
158 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
159 | 159 | ]; |
160 | 160 | $ignoreErrors[] = [ |
161 | - // identifier: method.notFound |
|
162 | - 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#', |
|
163 | - 'count' => 1, |
|
164 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
161 | + // identifier: method.notFound |
|
162 | + 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#', |
|
163 | + 'count' => 1, |
|
164 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
165 | 165 | ]; |
166 | 166 | $ignoreErrors[] = [ |
167 | - // identifier: return.type |
|
168 | - 'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#', |
|
169 | - 'count' => 1, |
|
170 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
167 | + // identifier: return.type |
|
168 | + 'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#', |
|
169 | + 'count' => 1, |
|
170 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
171 | 171 | ]; |
172 | 172 | $ignoreErrors[] = [ |
173 | - // identifier: class.notFound |
|
174 | - 'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#', |
|
175 | - 'count' => 1, |
|
176 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
173 | + // identifier: class.notFound |
|
174 | + 'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#', |
|
175 | + 'count' => 1, |
|
176 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
177 | 177 | ]; |
178 | 178 | $ignoreErrors[] = [ |
179 | - // identifier: notIdentical.alwaysTrue |
|
180 | - 'message' => '#^Strict comparison using \\!\\=\\= between null and BlitzPHP\\\\Session\\\\Store will always evaluate to true\\.$#', |
|
181 | - 'count' => 1, |
|
182 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
179 | + // identifier: notIdentical.alwaysTrue |
|
180 | + 'message' => '#^Strict comparison using \\!\\=\\= between null and BlitzPHP\\\\Session\\\\Store will always evaluate to true\\.$#', |
|
181 | + 'count' => 1, |
|
182 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
183 | 183 | ]; |
184 | 184 | $ignoreErrors[] = [ |
185 | - // identifier: method.notFound |
|
186 | - 'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#', |
|
187 | - 'count' => 1, |
|
188 | - 'path' => __DIR__ . '/src/Http/Response.php', |
|
185 | + // identifier: method.notFound |
|
186 | + 'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#', |
|
187 | + 'count' => 1, |
|
188 | + 'path' => __DIR__ . '/src/Http/Response.php', |
|
189 | 189 | ]; |
190 | 190 | $ignoreErrors[] = [ |
191 | - // identifier: class.notFound |
|
192 | - 'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#', |
|
193 | - 'count' => 1, |
|
194 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
191 | + // identifier: class.notFound |
|
192 | + 'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#', |
|
193 | + 'count' => 1, |
|
194 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
195 | 195 | ]; |
196 | 196 | $ignoreErrors[] = [ |
197 | - // identifier: class.notFound |
|
198 | - 'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
199 | - 'count' => 2, |
|
200 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
197 | + // identifier: class.notFound |
|
198 | + 'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
199 | + 'count' => 2, |
|
200 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
201 | 201 | ]; |
202 | 202 | $ignoreErrors[] = [ |
203 | - // identifier: class.notFound |
|
204 | - 'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
205 | - 'count' => 2, |
|
206 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
203 | + // identifier: class.notFound |
|
204 | + 'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
205 | + 'count' => 2, |
|
206 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
207 | 207 | ]; |
208 | 208 | $ignoreErrors[] = [ |
209 | - // identifier: class.notFound |
|
210 | - 'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
211 | - 'count' => 2, |
|
212 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
209 | + // identifier: class.notFound |
|
210 | + 'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
211 | + 'count' => 2, |
|
212 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
213 | 213 | ]; |
214 | 214 | $ignoreErrors[] = [ |
215 | - // identifier: class.notFound |
|
216 | - 'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
217 | - 'count' => 2, |
|
218 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
215 | + // identifier: class.notFound |
|
216 | + 'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
217 | + 'count' => 2, |
|
218 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
219 | 219 | ]; |
220 | 220 | $ignoreErrors[] = [ |
221 | - // identifier: class.notFound |
|
222 | - 'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
223 | - 'count' => 2, |
|
224 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
221 | + // identifier: class.notFound |
|
222 | + 'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
223 | + 'count' => 2, |
|
224 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
225 | 225 | ]; |
226 | 226 | $ignoreErrors[] = [ |
227 | - // identifier: class.notFound |
|
228 | - 'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
229 | - 'count' => 2, |
|
230 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
227 | + // identifier: class.notFound |
|
228 | + 'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
229 | + 'count' => 2, |
|
230 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
231 | 231 | ]; |
232 | 232 | $ignoreErrors[] = [ |
233 | - // identifier: class.notFound |
|
234 | - 'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
235 | - 'count' => 2, |
|
236 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
233 | + // identifier: class.notFound |
|
234 | + 'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
235 | + 'count' => 2, |
|
236 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
237 | 237 | ]; |
238 | 238 | $ignoreErrors[] = [ |
239 | - // identifier: class.notFound |
|
240 | - 'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
241 | - 'count' => 2, |
|
242 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
239 | + // identifier: class.notFound |
|
240 | + 'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
241 | + 'count' => 2, |
|
242 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
243 | 243 | ]; |
244 | 244 | $ignoreErrors[] = [ |
245 | - // identifier: class.notFound |
|
246 | - 'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
247 | - 'count' => 2, |
|
248 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
245 | + // identifier: class.notFound |
|
246 | + 'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
247 | + 'count' => 2, |
|
248 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
249 | 249 | ]; |
250 | 250 | $ignoreErrors[] = [ |
251 | - // identifier: class.notFound |
|
252 | - 'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
253 | - 'count' => 1, |
|
254 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
251 | + // identifier: class.notFound |
|
252 | + 'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
253 | + 'count' => 1, |
|
254 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
255 | 255 | ]; |
256 | 256 | $ignoreErrors[] = [ |
257 | - // identifier: class.notFound |
|
258 | - 'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
259 | - 'count' => 2, |
|
260 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
257 | + // identifier: class.notFound |
|
258 | + 'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
259 | + 'count' => 2, |
|
260 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
261 | 261 | ]; |
262 | 262 | $ignoreErrors[] = [ |
263 | - // identifier: class.notFound |
|
264 | - 'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
265 | - 'count' => 2, |
|
266 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
263 | + // identifier: class.notFound |
|
264 | + 'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
265 | + 'count' => 2, |
|
266 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
267 | 267 | ]; |
268 | 268 | $ignoreErrors[] = [ |
269 | - // identifier: class.notFound |
|
270 | - 'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
271 | - 'count' => 2, |
|
272 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
269 | + // identifier: class.notFound |
|
270 | + 'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
271 | + 'count' => 2, |
|
272 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
273 | 273 | ]; |
274 | 274 | $ignoreErrors[] = [ |
275 | - // identifier: class.notFound |
|
276 | - 'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
277 | - 'count' => 2, |
|
278 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
275 | + // identifier: class.notFound |
|
276 | + 'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
277 | + 'count' => 2, |
|
278 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
279 | 279 | ]; |
280 | 280 | $ignoreErrors[] = [ |
281 | - // identifier: class.notFound |
|
282 | - 'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
283 | - 'count' => 2, |
|
284 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
281 | + // identifier: class.notFound |
|
282 | + 'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
283 | + 'count' => 2, |
|
284 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
285 | 285 | ]; |
286 | 286 | $ignoreErrors[] = [ |
287 | - // identifier: class.notFound |
|
288 | - 'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
289 | - 'count' => 2, |
|
290 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
287 | + // identifier: class.notFound |
|
288 | + 'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
289 | + 'count' => 2, |
|
290 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
291 | 291 | ]; |
292 | 292 | $ignoreErrors[] = [ |
293 | - // identifier: class.notFound |
|
294 | - 'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
295 | - 'count' => 2, |
|
296 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
293 | + // identifier: class.notFound |
|
294 | + 'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
295 | + 'count' => 2, |
|
296 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
297 | 297 | ]; |
298 | 298 | $ignoreErrors[] = [ |
299 | - // identifier: class.notFound |
|
300 | - 'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
301 | - 'count' => 2, |
|
302 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
299 | + // identifier: class.notFound |
|
300 | + 'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
301 | + 'count' => 2, |
|
302 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
303 | 303 | ]; |
304 | 304 | $ignoreErrors[] = [ |
305 | - // identifier: class.notFound |
|
306 | - 'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
307 | - 'count' => 2, |
|
308 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
305 | + // identifier: class.notFound |
|
306 | + 'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
307 | + 'count' => 2, |
|
308 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
309 | 309 | ]; |
310 | 310 | $ignoreErrors[] = [ |
311 | - // identifier: class.notFound |
|
312 | - 'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
313 | - 'count' => 2, |
|
314 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
311 | + // identifier: class.notFound |
|
312 | + 'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
313 | + 'count' => 2, |
|
314 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
315 | 315 | ]; |
316 | 316 | $ignoreErrors[] = [ |
317 | - // identifier: class.notFound |
|
318 | - 'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
319 | - 'count' => 1, |
|
320 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
317 | + // identifier: class.notFound |
|
318 | + 'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
319 | + 'count' => 1, |
|
320 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
321 | 321 | ]; |
322 | 322 | $ignoreErrors[] = [ |
323 | - // identifier: class.notFound |
|
324 | - 'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
325 | - 'count' => 1, |
|
326 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
323 | + // identifier: class.notFound |
|
324 | + 'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
325 | + 'count' => 1, |
|
326 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
327 | 327 | ]; |
328 | 328 | $ignoreErrors[] = [ |
329 | - // identifier: class.notFound |
|
330 | - 'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
331 | - 'count' => 1, |
|
332 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
329 | + // identifier: class.notFound |
|
330 | + 'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
331 | + 'count' => 1, |
|
332 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
333 | 333 | ]; |
334 | 334 | $ignoreErrors[] = [ |
335 | - // identifier: class.notFound |
|
336 | - 'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
337 | - 'count' => 1, |
|
338 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
335 | + // identifier: class.notFound |
|
336 | + 'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
337 | + 'count' => 1, |
|
338 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
339 | 339 | ]; |
340 | 340 | $ignoreErrors[] = [ |
341 | - // identifier: class.notFound |
|
342 | - 'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
343 | - 'count' => 1, |
|
344 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
341 | + // identifier: class.notFound |
|
342 | + 'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
343 | + 'count' => 1, |
|
344 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
345 | 345 | ]; |
346 | 346 | $ignoreErrors[] = [ |
347 | - // identifier: class.notFound |
|
348 | - 'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
349 | - 'count' => 1, |
|
350 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
347 | + // identifier: class.notFound |
|
348 | + 'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
349 | + 'count' => 1, |
|
350 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
351 | 351 | ]; |
352 | 352 | $ignoreErrors[] = [ |
353 | - // identifier: class.notFound |
|
354 | - 'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
355 | - 'count' => 1, |
|
356 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
353 | + // identifier: class.notFound |
|
354 | + 'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
355 | + 'count' => 1, |
|
356 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
357 | 357 | ]; |
358 | 358 | $ignoreErrors[] = [ |
359 | - // identifier: class.notFound |
|
360 | - 'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
361 | - 'count' => 1, |
|
362 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
359 | + // identifier: class.notFound |
|
360 | + 'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
361 | + 'count' => 1, |
|
362 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
363 | 363 | ]; |
364 | 364 | $ignoreErrors[] = [ |
365 | - // identifier: class.notFound |
|
366 | - 'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
367 | - 'count' => 1, |
|
368 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
365 | + // identifier: class.notFound |
|
366 | + 'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
367 | + 'count' => 1, |
|
368 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
369 | 369 | ]; |
370 | 370 | $ignoreErrors[] = [ |
371 | - // identifier: class.notFound |
|
372 | - 'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
373 | - 'count' => 1, |
|
374 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
371 | + // identifier: class.notFound |
|
372 | + 'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
373 | + 'count' => 1, |
|
374 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
375 | 375 | ]; |
376 | 376 | $ignoreErrors[] = [ |
377 | - // identifier: class.notFound |
|
378 | - 'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
379 | - 'count' => 1, |
|
380 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
377 | + // identifier: class.notFound |
|
378 | + 'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
379 | + 'count' => 1, |
|
380 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
381 | 381 | ]; |
382 | 382 | $ignoreErrors[] = [ |
383 | - // identifier: class.notFound |
|
384 | - 'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
385 | - 'count' => 1, |
|
386 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
383 | + // identifier: class.notFound |
|
384 | + 'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
385 | + 'count' => 1, |
|
386 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
387 | 387 | ]; |
388 | 388 | $ignoreErrors[] = [ |
389 | - // identifier: class.notFound |
|
390 | - 'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
391 | - 'count' => 1, |
|
392 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
389 | + // identifier: class.notFound |
|
390 | + 'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
391 | + 'count' => 1, |
|
392 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
393 | 393 | ]; |
394 | 394 | $ignoreErrors[] = [ |
395 | - // identifier: class.notFound |
|
396 | - 'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
397 | - 'count' => 1, |
|
398 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
395 | + // identifier: class.notFound |
|
396 | + 'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
397 | + 'count' => 1, |
|
398 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
399 | 399 | ]; |
400 | 400 | $ignoreErrors[] = [ |
401 | - // identifier: class.notFound |
|
402 | - 'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
403 | - 'count' => 2, |
|
404 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
401 | + // identifier: class.notFound |
|
402 | + 'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
403 | + 'count' => 2, |
|
404 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
405 | 405 | ]; |
406 | 406 | $ignoreErrors[] = [ |
407 | - // identifier: class.notFound |
|
408 | - 'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
409 | - 'count' => 1, |
|
410 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
407 | + // identifier: class.notFound |
|
408 | + 'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
409 | + 'count' => 1, |
|
410 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
411 | 411 | ]; |
412 | 412 | $ignoreErrors[] = [ |
413 | - // identifier: class.notFound |
|
414 | - 'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
415 | - 'count' => 1, |
|
416 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
413 | + // identifier: class.notFound |
|
414 | + 'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
415 | + 'count' => 1, |
|
416 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
417 | 417 | ]; |
418 | 418 | $ignoreErrors[] = [ |
419 | - // identifier: class.notFound |
|
420 | - 'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
421 | - 'count' => 1, |
|
422 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
419 | + // identifier: class.notFound |
|
420 | + 'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
421 | + 'count' => 1, |
|
422 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
423 | 423 | ]; |
424 | 424 | $ignoreErrors[] = [ |
425 | - // identifier: class.notFound |
|
426 | - 'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
427 | - 'count' => 1, |
|
428 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
425 | + // identifier: class.notFound |
|
426 | + 'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
427 | + 'count' => 1, |
|
428 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
429 | 429 | ]; |
430 | 430 | $ignoreErrors[] = [ |
431 | - // identifier: class.notFound |
|
432 | - 'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
433 | - 'count' => 1, |
|
434 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
431 | + // identifier: class.notFound |
|
432 | + 'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
433 | + 'count' => 1, |
|
434 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
435 | 435 | ]; |
436 | 436 | $ignoreErrors[] = [ |
437 | - // identifier: class.notFound |
|
438 | - 'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
439 | - 'count' => 1, |
|
440 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
437 | + // identifier: class.notFound |
|
438 | + 'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
439 | + 'count' => 1, |
|
440 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
441 | 441 | ]; |
442 | 442 | $ignoreErrors[] = [ |
443 | - // identifier: class.notFound |
|
444 | - 'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
445 | - 'count' => 1, |
|
446 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
443 | + // identifier: class.notFound |
|
444 | + 'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
445 | + 'count' => 1, |
|
446 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
447 | 447 | ]; |
448 | 448 | $ignoreErrors[] = [ |
449 | - // identifier: class.notFound |
|
450 | - 'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#', |
|
451 | - 'count' => 1, |
|
452 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
449 | + // identifier: class.notFound |
|
450 | + 'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#', |
|
451 | + 'count' => 1, |
|
452 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
453 | 453 | ]; |
454 | 454 | $ignoreErrors[] = [ |
455 | - // identifier: class.notFound |
|
456 | - 'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#', |
|
457 | - 'count' => 1, |
|
458 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
455 | + // identifier: class.notFound |
|
456 | + 'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#', |
|
457 | + 'count' => 1, |
|
458 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
459 | 459 | ]; |
460 | 460 | $ignoreErrors[] = [ |
461 | - // identifier: throws.notThrowable |
|
462 | - 'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#', |
|
463 | - 'count' => 11, |
|
464 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
461 | + // identifier: throws.notThrowable |
|
462 | + 'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#', |
|
463 | + 'count' => 11, |
|
464 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
465 | 465 | ]; |
466 | 466 | $ignoreErrors[] = [ |
467 | - // identifier: class.notFound |
|
468 | - 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#', |
|
469 | - 'count' => 1, |
|
470 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
467 | + // identifier: class.notFound |
|
468 | + 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#', |
|
469 | + 'count' => 1, |
|
470 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
471 | 471 | ]; |
472 | 472 | $ignoreErrors[] = [ |
473 | - // identifier: class.notFound |
|
474 | - 'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
475 | - 'count' => 1, |
|
476 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
473 | + // identifier: class.notFound |
|
474 | + 'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
475 | + 'count' => 1, |
|
476 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
477 | 477 | ]; |
478 | 478 | $ignoreErrors[] = [ |
479 | - // identifier: class.notFound |
|
480 | - 'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
481 | - 'count' => 1, |
|
482 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
479 | + // identifier: class.notFound |
|
480 | + 'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
481 | + 'count' => 1, |
|
482 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
483 | 483 | ]; |
484 | 484 | $ignoreErrors[] = [ |
485 | - // identifier: class.notFound |
|
486 | - 'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
487 | - 'count' => 4, |
|
488 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
485 | + // identifier: class.notFound |
|
486 | + 'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
487 | + 'count' => 4, |
|
488 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
489 | 489 | ]; |
490 | 490 | $ignoreErrors[] = [ |
491 | - // identifier: class.notFound |
|
492 | - 'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
493 | - 'count' => 1, |
|
494 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
491 | + // identifier: class.notFound |
|
492 | + 'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
493 | + 'count' => 1, |
|
494 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
495 | 495 | ]; |
496 | 496 | $ignoreErrors[] = [ |
497 | - // identifier: class.notFound |
|
498 | - 'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
499 | - 'count' => 1, |
|
500 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
497 | + // identifier: class.notFound |
|
498 | + 'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
499 | + 'count' => 1, |
|
500 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
501 | 501 | ]; |
502 | 502 | $ignoreErrors[] = [ |
503 | - // identifier: class.notFound |
|
504 | - 'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#', |
|
505 | - 'count' => 2, |
|
506 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
503 | + // identifier: class.notFound |
|
504 | + 'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#', |
|
505 | + 'count' => 2, |
|
506 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
507 | 507 | ]; |
508 | 508 | $ignoreErrors[] = [ |
509 | - // identifier: class.notFound |
|
510 | - 'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
511 | - 'count' => 1, |
|
512 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
509 | + // identifier: class.notFound |
|
510 | + 'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
511 | + 'count' => 1, |
|
512 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
513 | 513 | ]; |
514 | 514 | $ignoreErrors[] = [ |
515 | - // identifier: class.notFound |
|
516 | - 'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
517 | - 'count' => 1, |
|
518 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
515 | + // identifier: class.notFound |
|
516 | + 'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
517 | + 'count' => 1, |
|
518 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
519 | 519 | ]; |
520 | 520 | $ignoreErrors[] = [ |
521 | - // identifier: class.notFound |
|
522 | - 'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
523 | - 'count' => 1, |
|
524 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
521 | + // identifier: class.notFound |
|
522 | + 'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
523 | + 'count' => 1, |
|
524 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
525 | 525 | ]; |
526 | 526 | $ignoreErrors[] = [ |
527 | - // identifier: class.notFound |
|
528 | - 'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
529 | - 'count' => 1, |
|
530 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
527 | + // identifier: class.notFound |
|
528 | + 'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
529 | + 'count' => 1, |
|
530 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
531 | 531 | ]; |
532 | 532 | $ignoreErrors[] = [ |
533 | - // identifier: class.notFound |
|
534 | - 'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
535 | - 'count' => 1, |
|
536 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
533 | + // identifier: class.notFound |
|
534 | + 'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
535 | + 'count' => 1, |
|
536 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
537 | 537 | ]; |
538 | 538 | $ignoreErrors[] = [ |
539 | - // identifier: class.notFound |
|
540 | - 'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
541 | - 'count' => 1, |
|
542 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
539 | + // identifier: class.notFound |
|
540 | + 'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
541 | + 'count' => 1, |
|
542 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
543 | 543 | ]; |
544 | 544 | $ignoreErrors[] = [ |
545 | - // identifier: class.notFound |
|
546 | - 'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
547 | - 'count' => 1, |
|
548 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
545 | + // identifier: class.notFound |
|
546 | + 'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
547 | + 'count' => 1, |
|
548 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
549 | 549 | ]; |
550 | 550 | $ignoreErrors[] = [ |
551 | - // identifier: class.notFound |
|
552 | - 'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
553 | - 'count' => 1, |
|
554 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
551 | + // identifier: class.notFound |
|
552 | + 'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
553 | + 'count' => 1, |
|
554 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
555 | 555 | ]; |
556 | 556 | $ignoreErrors[] = [ |
557 | - // identifier: class.notFound |
|
558 | - 'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#', |
|
559 | - 'count' => 1, |
|
560 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
557 | + // identifier: class.notFound |
|
558 | + 'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#', |
|
559 | + 'count' => 1, |
|
560 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
561 | 561 | ]; |
562 | 562 | $ignoreErrors[] = [ |
563 | - // identifier: class.notFound |
|
564 | - 'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#', |
|
565 | - 'count' => 1, |
|
566 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
563 | + // identifier: class.notFound |
|
564 | + 'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#', |
|
565 | + 'count' => 1, |
|
566 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
567 | 567 | ]; |
568 | 568 | $ignoreErrors[] = [ |
569 | - // identifier: class.notFound |
|
570 | - 'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#', |
|
571 | - 'count' => 1, |
|
572 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
569 | + // identifier: class.notFound |
|
570 | + 'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#', |
|
571 | + 'count' => 1, |
|
572 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
573 | 573 | ]; |
574 | 574 | $ignoreErrors[] = [ |
575 | - // identifier: class.notFound |
|
576 | - 'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
577 | - 'count' => 1, |
|
578 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
575 | + // identifier: class.notFound |
|
576 | + 'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
577 | + 'count' => 1, |
|
578 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
579 | 579 | ]; |
580 | 580 | $ignoreErrors[] = [ |
581 | - // identifier: class.notFound |
|
582 | - 'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
583 | - 'count' => 1, |
|
584 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
581 | + // identifier: class.notFound |
|
582 | + 'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
583 | + 'count' => 1, |
|
584 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
585 | 585 | ]; |
586 | 586 | $ignoreErrors[] = [ |
587 | - // identifier: class.notFound |
|
588 | - 'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
589 | - 'count' => 1, |
|
590 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
587 | + // identifier: class.notFound |
|
588 | + 'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
589 | + 'count' => 1, |
|
590 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
591 | 591 | ]; |
592 | 592 | $ignoreErrors[] = [ |
593 | - // identifier: class.notFound |
|
594 | - 'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#', |
|
595 | - 'count' => 1, |
|
596 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
593 | + // identifier: class.notFound |
|
594 | + 'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#', |
|
595 | + 'count' => 1, |
|
596 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
597 | 597 | ]; |
598 | 598 | $ignoreErrors[] = [ |
599 | - // identifier: class.notFound |
|
600 | - 'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#', |
|
601 | - 'count' => 1, |
|
602 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
599 | + // identifier: class.notFound |
|
600 | + 'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#', |
|
601 | + 'count' => 1, |
|
602 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
603 | 603 | ]; |
604 | 604 | $ignoreErrors[] = [ |
605 | - // identifier: class.notFound |
|
606 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#', |
|
607 | - 'count' => 1, |
|
608 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
605 | + // identifier: class.notFound |
|
606 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#', |
|
607 | + 'count' => 1, |
|
608 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
609 | 609 | ]; |
610 | 610 | $ignoreErrors[] = [ |
611 | - // identifier: class.notFound |
|
612 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#', |
|
613 | - 'count' => 1, |
|
614 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
611 | + // identifier: class.notFound |
|
612 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#', |
|
613 | + 'count' => 1, |
|
614 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
615 | 615 | ]; |
616 | 616 | $ignoreErrors[] = [ |
617 | - // identifier: class.notFound |
|
618 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#', |
|
619 | - 'count' => 1, |
|
620 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
617 | + // identifier: class.notFound |
|
618 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#', |
|
619 | + 'count' => 1, |
|
620 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
621 | 621 | ]; |
622 | 622 | $ignoreErrors[] = [ |
623 | - // identifier: class.notFound |
|
624 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#', |
|
625 | - 'count' => 1, |
|
626 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
623 | + // identifier: class.notFound |
|
624 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#', |
|
625 | + 'count' => 1, |
|
626 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
627 | 627 | ]; |
628 | 628 | $ignoreErrors[] = [ |
629 | - // identifier: class.notFound |
|
630 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#', |
|
631 | - 'count' => 1, |
|
632 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
629 | + // identifier: class.notFound |
|
630 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#', |
|
631 | + 'count' => 1, |
|
632 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
633 | 633 | ]; |
634 | 634 | $ignoreErrors[] = [ |
635 | - // identifier: class.notFound |
|
636 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#', |
|
637 | - 'count' => 4, |
|
638 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
635 | + // identifier: class.notFound |
|
636 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#', |
|
637 | + 'count' => 4, |
|
638 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
639 | 639 | ]; |
640 | 640 | $ignoreErrors[] = [ |
641 | - // identifier: class.notFound |
|
642 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#', |
|
643 | - 'count' => 2, |
|
644 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
641 | + // identifier: class.notFound |
|
642 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#', |
|
643 | + 'count' => 2, |
|
644 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
645 | 645 | ]; |
646 | 646 | $ignoreErrors[] = [ |
647 | - // identifier: class.notFound |
|
648 | - 'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#', |
|
649 | - 'count' => 1, |
|
650 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
647 | + // identifier: class.notFound |
|
648 | + 'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#', |
|
649 | + 'count' => 1, |
|
650 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
651 | 651 | ]; |
652 | 652 | $ignoreErrors[] = [ |
653 | - // identifier: class.notFound |
|
654 | - 'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#', |
|
655 | - 'count' => 1, |
|
656 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
653 | + // identifier: class.notFound |
|
654 | + 'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#', |
|
655 | + 'count' => 1, |
|
656 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
657 | 657 | ]; |
658 | 658 | $ignoreErrors[] = [ |
659 | - // identifier: property.onlyWritten |
|
660 | - 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$encryption is never read, only written\\.$#', |
|
661 | - 'count' => 1, |
|
662 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
659 | + // identifier: property.onlyWritten |
|
660 | + 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$encryption is never read, only written\\.$#', |
|
661 | + 'count' => 1, |
|
662 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
663 | 663 | ]; |
664 | 664 | $ignoreErrors[] = [ |
665 | - // identifier: class.notFound |
|
666 | - 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#', |
|
667 | - 'count' => 1, |
|
668 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
665 | + // identifier: class.notFound |
|
666 | + 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#', |
|
667 | + 'count' => 1, |
|
668 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
669 | 669 | ]; |
670 | 670 | $ignoreErrors[] = [ |
671 | - // identifier: property.onlyWritten |
|
672 | - 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$timeout is never read, only written\\.$#', |
|
673 | - 'count' => 1, |
|
674 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
671 | + // identifier: property.onlyWritten |
|
672 | + 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$timeout is never read, only written\\.$#', |
|
673 | + 'count' => 1, |
|
674 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
675 | 675 | ]; |
676 | 676 | $ignoreErrors[] = [ |
677 | - // identifier: class.notFound |
|
678 | - 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#', |
|
679 | - 'count' => 1, |
|
680 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
677 | + // identifier: class.notFound |
|
678 | + 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#', |
|
679 | + 'count' => 1, |
|
680 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
681 | 681 | ]; |
682 | 682 | $ignoreErrors[] = [ |
683 | - // identifier: new.static |
|
684 | - 'message' => '#^Unsafe usage of new static\\(\\)\\.$#', |
|
685 | - 'count' => 1, |
|
686 | - 'path' => __DIR__ . '/src/Middlewares/BaseMiddleware.php', |
|
683 | + // identifier: new.static |
|
684 | + 'message' => '#^Unsafe usage of new static\\(\\)\\.$#', |
|
685 | + 'count' => 1, |
|
686 | + 'path' => __DIR__ . '/src/Middlewares/BaseMiddleware.php', |
|
687 | 687 | ]; |
688 | 688 | $ignoreErrors[] = [ |
689 | - // identifier: assign.propertyType |
|
690 | - 'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\Request\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#', |
|
691 | - 'count' => 1, |
|
692 | - 'path' => __DIR__ . '/src/Router/Dispatcher.php', |
|
689 | + // identifier: assign.propertyType |
|
690 | + 'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\Request\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#', |
|
691 | + 'count' => 1, |
|
692 | + 'path' => __DIR__ . '/src/Router/Dispatcher.php', |
|
693 | 693 | ]; |
694 | 694 | $ignoreErrors[] = [ |
695 | - // identifier: assign.propertyType |
|
696 | - 'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#', |
|
697 | - 'count' => 4, |
|
698 | - 'path' => __DIR__ . '/src/Router/Dispatcher.php', |
|
695 | + // identifier: assign.propertyType |
|
696 | + 'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#', |
|
697 | + 'count' => 4, |
|
698 | + 'path' => __DIR__ . '/src/Router/Dispatcher.php', |
|
699 | 699 | ]; |
700 | 700 | $ignoreErrors[] = [ |
701 | - // identifier: class.notFound |
|
702 | - 'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
703 | - 'count' => 1, |
|
704 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
701 | + // identifier: class.notFound |
|
702 | + 'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
703 | + 'count' => 1, |
|
704 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
705 | 705 | ]; |
706 | 706 | $ignoreErrors[] = [ |
707 | - // identifier: class.notFound |
|
708 | - 'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
709 | - 'count' => 1, |
|
710 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
707 | + // identifier: class.notFound |
|
708 | + 'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
709 | + 'count' => 1, |
|
710 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
711 | 711 | ]; |
712 | 712 | $ignoreErrors[] = [ |
713 | - // identifier: class.notFound |
|
714 | - 'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
715 | - 'count' => 1, |
|
716 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
713 | + // identifier: class.notFound |
|
714 | + 'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
715 | + 'count' => 1, |
|
716 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
717 | 717 | ]; |
718 | 718 | $ignoreErrors[] = [ |
719 | - // identifier: class.notFound |
|
720 | - 'message' => '#^Class Jenssegers\\\\Blade\\\\Blade not found\\.$#', |
|
721 | - 'count' => 1, |
|
722 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
719 | + // identifier: class.notFound |
|
720 | + 'message' => '#^Class Jenssegers\\\\Blade\\\\Blade not found\\.$#', |
|
721 | + 'count' => 1, |
|
722 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
723 | 723 | ]; |
724 | 724 | $ignoreErrors[] = [ |
725 | - // identifier: class.notFound |
|
726 | - 'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#', |
|
727 | - 'count' => 1, |
|
728 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
725 | + // identifier: class.notFound |
|
726 | + 'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#', |
|
727 | + 'count' => 1, |
|
728 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
729 | 729 | ]; |
730 | 730 | $ignoreErrors[] = [ |
731 | - // identifier: class.notFound |
|
732 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#', |
|
733 | - 'count' => 1, |
|
734 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
731 | + // identifier: class.notFound |
|
732 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#', |
|
733 | + 'count' => 1, |
|
734 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
735 | 735 | ]; |
736 | 736 | $ignoreErrors[] = [ |
737 | - // identifier: class.notFound |
|
738 | - 'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
739 | - 'count' => 1, |
|
740 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
737 | + // identifier: class.notFound |
|
738 | + 'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
739 | + 'count' => 1, |
|
740 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
741 | 741 | ]; |
742 | 742 | $ignoreErrors[] = [ |
743 | - // identifier: class.notFound |
|
744 | - 'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
745 | - 'count' => 1, |
|
746 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
743 | + // identifier: class.notFound |
|
744 | + 'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
745 | + 'count' => 1, |
|
746 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
747 | 747 | ]; |
748 | 748 | $ignoreErrors[] = [ |
749 | - // identifier: class.notFound |
|
750 | - 'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
751 | - 'count' => 1, |
|
752 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
749 | + // identifier: class.notFound |
|
750 | + 'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
751 | + 'count' => 1, |
|
752 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
753 | 753 | ]; |
754 | 754 | $ignoreErrors[] = [ |
755 | - // identifier: class.notFound |
|
756 | - 'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
757 | - 'count' => 1, |
|
758 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
755 | + // identifier: class.notFound |
|
756 | + 'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
757 | + 'count' => 1, |
|
758 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
759 | 759 | ]; |
760 | 760 | $ignoreErrors[] = [ |
761 | - // identifier: class.notFound |
|
762 | - 'message' => '#^Class Latte\\\\Engine not found\\.$#', |
|
763 | - 'count' => 1, |
|
764 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
761 | + // identifier: class.notFound |
|
762 | + 'message' => '#^Class Latte\\\\Engine not found\\.$#', |
|
763 | + 'count' => 1, |
|
764 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
765 | 765 | ]; |
766 | 766 | $ignoreErrors[] = [ |
767 | - // identifier: class.notFound |
|
768 | - 'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#', |
|
769 | - 'count' => 1, |
|
770 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
767 | + // identifier: class.notFound |
|
768 | + 'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#', |
|
769 | + 'count' => 1, |
|
770 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
771 | 771 | ]; |
772 | 772 | $ignoreErrors[] = [ |
773 | - // identifier: class.notFound |
|
774 | - 'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#', |
|
775 | - 'count' => 1, |
|
776 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
773 | + // identifier: class.notFound |
|
774 | + 'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#', |
|
775 | + 'count' => 1, |
|
776 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
777 | 777 | ]; |
778 | 778 | $ignoreErrors[] = [ |
779 | - // identifier: class.notFound |
|
780 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#', |
|
781 | - 'count' => 1, |
|
782 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
779 | + // identifier: class.notFound |
|
780 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#', |
|
781 | + 'count' => 1, |
|
782 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
783 | 783 | ]; |
784 | 784 | $ignoreErrors[] = [ |
785 | - // identifier: class.notFound |
|
786 | - 'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
787 | - 'count' => 2, |
|
788 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
785 | + // identifier: class.notFound |
|
786 | + 'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
787 | + 'count' => 2, |
|
788 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
789 | 789 | ]; |
790 | 790 | $ignoreErrors[] = [ |
791 | - // identifier: class.notFound |
|
792 | - 'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
793 | - 'count' => 1, |
|
794 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
791 | + // identifier: class.notFound |
|
792 | + 'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
793 | + 'count' => 1, |
|
794 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
795 | 795 | ]; |
796 | 796 | $ignoreErrors[] = [ |
797 | - // identifier: class.notFound |
|
798 | - 'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
799 | - 'count' => 1, |
|
800 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
797 | + // identifier: class.notFound |
|
798 | + 'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
799 | + 'count' => 1, |
|
800 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
801 | 801 | ]; |
802 | 802 | $ignoreErrors[] = [ |
803 | - // identifier: class.notFound |
|
804 | - 'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
805 | - 'count' => 1, |
|
806 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
803 | + // identifier: class.notFound |
|
804 | + 'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
805 | + 'count' => 1, |
|
806 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
807 | 807 | ]; |
808 | 808 | $ignoreErrors[] = [ |
809 | - // identifier: class.notFound |
|
810 | - 'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#', |
|
811 | - 'count' => 1, |
|
812 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
809 | + // identifier: class.notFound |
|
810 | + 'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#', |
|
811 | + 'count' => 1, |
|
812 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
813 | 813 | ]; |
814 | 814 | $ignoreErrors[] = [ |
815 | - // identifier: class.notFound |
|
816 | - 'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#', |
|
817 | - 'count' => 1, |
|
818 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
815 | + // identifier: class.notFound |
|
816 | + 'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#', |
|
817 | + 'count' => 1, |
|
818 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
819 | 819 | ]; |
820 | 820 | $ignoreErrors[] = [ |
821 | - // identifier: class.notFound |
|
822 | - 'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#', |
|
823 | - 'count' => 1, |
|
824 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
821 | + // identifier: class.notFound |
|
822 | + 'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#', |
|
823 | + 'count' => 1, |
|
824 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
825 | 825 | ]; |
826 | 826 | $ignoreErrors[] = [ |
827 | - // identifier: class.notFound |
|
828 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#', |
|
829 | - 'count' => 1, |
|
830 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
827 | + // identifier: class.notFound |
|
828 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#', |
|
829 | + 'count' => 1, |
|
830 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
831 | 831 | ]; |
832 | 832 | $ignoreErrors[] = [ |
833 | - // identifier: class.notFound |
|
834 | - 'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#', |
|
835 | - 'count' => 1, |
|
836 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
833 | + // identifier: class.notFound |
|
834 | + 'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#', |
|
835 | + 'count' => 1, |
|
836 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
837 | 837 | ]; |
838 | 838 | $ignoreErrors[] = [ |
839 | - // identifier: class.notFound |
|
840 | - 'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#', |
|
841 | - 'count' => 1, |
|
842 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
839 | + // identifier: class.notFound |
|
840 | + 'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#', |
|
841 | + 'count' => 1, |
|
842 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
843 | 843 | ]; |
844 | 844 | $ignoreErrors[] = [ |
845 | - // identifier: class.notFound |
|
846 | - 'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#', |
|
847 | - 'count' => 1, |
|
848 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
845 | + // identifier: class.notFound |
|
846 | + 'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#', |
|
847 | + 'count' => 1, |
|
848 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
849 | 849 | ]; |
850 | 850 | $ignoreErrors[] = [ |
851 | - // identifier: class.notFound |
|
852 | - 'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#', |
|
853 | - 'count' => 1, |
|
854 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
851 | + // identifier: class.notFound |
|
852 | + 'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#', |
|
853 | + 'count' => 1, |
|
854 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
855 | 855 | ]; |
856 | 856 | $ignoreErrors[] = [ |
857 | - // identifier: class.notFound |
|
858 | - 'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#', |
|
859 | - 'count' => 1, |
|
860 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
857 | + // identifier: class.notFound |
|
858 | + 'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#', |
|
859 | + 'count' => 1, |
|
860 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
861 | 861 | ]; |
862 | 862 | $ignoreErrors[] = [ |
863 | - // identifier: class.notFound |
|
864 | - 'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#', |
|
865 | - 'count' => 1, |
|
866 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
863 | + // identifier: class.notFound |
|
864 | + 'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#', |
|
865 | + 'count' => 1, |
|
866 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
867 | 867 | ]; |
868 | 868 | $ignoreErrors[] = [ |
869 | - // identifier: class.notFound |
|
870 | - 'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#', |
|
871 | - 'count' => 1, |
|
872 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
869 | + // identifier: class.notFound |
|
870 | + 'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#', |
|
871 | + 'count' => 1, |
|
872 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
873 | 873 | ]; |
874 | 874 | $ignoreErrors[] = [ |
875 | - // identifier: class.notFound |
|
876 | - 'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#', |
|
877 | - 'count' => 1, |
|
878 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
875 | + // identifier: class.notFound |
|
876 | + 'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#', |
|
877 | + 'count' => 1, |
|
878 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
879 | 879 | ]; |
880 | 880 | $ignoreErrors[] = [ |
881 | - // identifier: class.notFound |
|
882 | - 'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#', |
|
883 | - 'count' => 1, |
|
884 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
881 | + // identifier: class.notFound |
|
882 | + 'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#', |
|
883 | + 'count' => 1, |
|
884 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
885 | 885 | ]; |
886 | 886 | $ignoreErrors[] = [ |
887 | - // identifier: class.notFound |
|
888 | - 'message' => '#^Class Smarty not found\\.$#', |
|
889 | - 'count' => 1, |
|
890 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
887 | + // identifier: class.notFound |
|
888 | + 'message' => '#^Class Smarty not found\\.$#', |
|
889 | + 'count' => 1, |
|
890 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
891 | 891 | ]; |
892 | 892 | $ignoreErrors[] = [ |
893 | - // identifier: class.notFound |
|
894 | - 'message' => '#^Instantiated class Smarty not found\\.$#', |
|
895 | - 'count' => 1, |
|
896 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
893 | + // identifier: class.notFound |
|
894 | + 'message' => '#^Instantiated class Smarty not found\\.$#', |
|
895 | + 'count' => 1, |
|
896 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
897 | 897 | ]; |
898 | 898 | $ignoreErrors[] = [ |
899 | - // identifier: class.notFound |
|
900 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#', |
|
901 | - 'count' => 1, |
|
902 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
899 | + // identifier: class.notFound |
|
900 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#', |
|
901 | + 'count' => 1, |
|
902 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
903 | 903 | ]; |
904 | 904 | $ignoreErrors[] = [ |
905 | - // identifier: class.notFound |
|
906 | - 'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
907 | - 'count' => 1, |
|
908 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
905 | + // identifier: class.notFound |
|
906 | + 'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
907 | + 'count' => 1, |
|
908 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
909 | 909 | ]; |
910 | 910 | $ignoreErrors[] = [ |
911 | - // identifier: class.notFound |
|
912 | - 'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
913 | - 'count' => 1, |
|
914 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
911 | + // identifier: class.notFound |
|
912 | + 'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
913 | + 'count' => 1, |
|
914 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
915 | 915 | ]; |
916 | 916 | $ignoreErrors[] = [ |
917 | - // identifier: class.notFound |
|
918 | - 'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
919 | - 'count' => 1, |
|
920 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
917 | + // identifier: class.notFound |
|
918 | + 'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
919 | + 'count' => 1, |
|
920 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
921 | 921 | ]; |
922 | 922 | $ignoreErrors[] = [ |
923 | - // identifier: class.notFound |
|
924 | - 'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
925 | - 'count' => 1, |
|
926 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
923 | + // identifier: class.notFound |
|
924 | + 'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
925 | + 'count' => 1, |
|
926 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
927 | 927 | ]; |
928 | 928 | $ignoreErrors[] = [ |
929 | - // identifier: class.notFound |
|
930 | - 'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
931 | - 'count' => 1, |
|
932 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
929 | + // identifier: class.notFound |
|
930 | + 'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
931 | + 'count' => 1, |
|
932 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
933 | 933 | ]; |
934 | 934 | $ignoreErrors[] = [ |
935 | - // identifier: class.notFound |
|
936 | - 'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
937 | - 'count' => 1, |
|
938 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
935 | + // identifier: class.notFound |
|
936 | + 'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
937 | + 'count' => 1, |
|
938 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
939 | 939 | ]; |
940 | 940 | $ignoreErrors[] = [ |
941 | - // identifier: class.notFound |
|
942 | - 'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
943 | - 'count' => 1, |
|
944 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
941 | + // identifier: class.notFound |
|
942 | + 'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
943 | + 'count' => 1, |
|
944 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
945 | 945 | ]; |
946 | 946 | $ignoreErrors[] = [ |
947 | - // identifier: class.notFound |
|
948 | - 'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
949 | - 'count' => 1, |
|
950 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
947 | + // identifier: class.notFound |
|
948 | + 'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
949 | + 'count' => 1, |
|
950 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
951 | 951 | ]; |
952 | 952 | $ignoreErrors[] = [ |
953 | - // identifier: class.notFound |
|
954 | - 'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
955 | - 'count' => 1, |
|
956 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
953 | + // identifier: class.notFound |
|
954 | + 'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
955 | + 'count' => 1, |
|
956 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
957 | 957 | ]; |
958 | 958 | $ignoreErrors[] = [ |
959 | - // identifier: class.notFound |
|
960 | - 'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
961 | - 'count' => 1, |
|
962 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
959 | + // identifier: class.notFound |
|
960 | + 'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
961 | + 'count' => 1, |
|
962 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
963 | 963 | ]; |
964 | 964 | $ignoreErrors[] = [ |
965 | - // identifier: class.notFound |
|
966 | - 'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
967 | - 'count' => 1, |
|
968 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
965 | + // identifier: class.notFound |
|
966 | + 'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
967 | + 'count' => 1, |
|
968 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
969 | 969 | ]; |
970 | 970 | $ignoreErrors[] = [ |
971 | - // identifier: class.notFound |
|
972 | - 'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
973 | - 'count' => 1, |
|
974 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
971 | + // identifier: class.notFound |
|
972 | + 'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
973 | + 'count' => 1, |
|
974 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
975 | 975 | ]; |
976 | 976 | $ignoreErrors[] = [ |
977 | - // identifier: class.notFound |
|
978 | - 'message' => '#^Class Twig\\\\Environment not found\\.$#', |
|
979 | - 'count' => 1, |
|
980 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
977 | + // identifier: class.notFound |
|
978 | + 'message' => '#^Class Twig\\\\Environment not found\\.$#', |
|
979 | + 'count' => 1, |
|
980 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
981 | 981 | ]; |
982 | 982 | $ignoreErrors[] = [ |
983 | - // identifier: class.notFound |
|
984 | - 'message' => '#^Class Twig\\\\TwigFilter not found\\.$#', |
|
985 | - 'count' => 1, |
|
986 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
983 | + // identifier: class.notFound |
|
984 | + 'message' => '#^Class Twig\\\\TwigFilter not found\\.$#', |
|
985 | + 'count' => 1, |
|
986 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
987 | 987 | ]; |
988 | 988 | $ignoreErrors[] = [ |
989 | - // identifier: class.notFound |
|
990 | - 'message' => '#^Class Twig\\\\TwigFunction not found\\.$#', |
|
991 | - 'count' => 1, |
|
992 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
989 | + // identifier: class.notFound |
|
990 | + 'message' => '#^Class Twig\\\\TwigFunction not found\\.$#', |
|
991 | + 'count' => 1, |
|
992 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
993 | 993 | ]; |
994 | 994 | $ignoreErrors[] = [ |
995 | - // identifier: class.notFound |
|
996 | - 'message' => '#^Instantiated class Twig\\\\Environment not found\\.$#', |
|
997 | - 'count' => 1, |
|
998 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
995 | + // identifier: class.notFound |
|
996 | + 'message' => '#^Instantiated class Twig\\\\Environment not found\\.$#', |
|
997 | + 'count' => 1, |
|
998 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
999 | 999 | ]; |
1000 | 1000 | $ignoreErrors[] = [ |
1001 | - // identifier: class.notFound |
|
1002 | - 'message' => '#^Instantiated class Twig\\\\Loader\\\\FilesystemLoader not found\\.$#', |
|
1003 | - 'count' => 1, |
|
1004 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1001 | + // identifier: class.notFound |
|
1002 | + 'message' => '#^Instantiated class Twig\\\\Loader\\\\FilesystemLoader not found\\.$#', |
|
1003 | + 'count' => 1, |
|
1004 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1005 | 1005 | ]; |
1006 | 1006 | $ignoreErrors[] = [ |
1007 | - // identifier: parameter.notFound |
|
1008 | - 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$cache_id$#', |
|
1009 | - 'count' => 1, |
|
1010 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1007 | + // identifier: parameter.notFound |
|
1008 | + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$cache_id$#', |
|
1009 | + 'count' => 1, |
|
1010 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1011 | 1011 | ]; |
1012 | 1012 | $ignoreErrors[] = [ |
1013 | - // identifier: parameter.notFound |
|
1014 | - 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$compile_id$#', |
|
1015 | - 'count' => 1, |
|
1016 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1013 | + // identifier: parameter.notFound |
|
1014 | + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$compile_id$#', |
|
1015 | + 'count' => 1, |
|
1016 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1017 | 1017 | ]; |
1018 | 1018 | $ignoreErrors[] = [ |
1019 | - // identifier: parameter.notFound |
|
1020 | - 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$parent$#', |
|
1021 | - 'count' => 1, |
|
1022 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1019 | + // identifier: parameter.notFound |
|
1020 | + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$parent$#', |
|
1021 | + 'count' => 1, |
|
1022 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1023 | 1023 | ]; |
1024 | 1024 | $ignoreErrors[] = [ |
1025 | - // identifier: parameter.notFound |
|
1026 | - 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$template$#', |
|
1027 | - 'count' => 1, |
|
1028 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1025 | + // identifier: parameter.notFound |
|
1026 | + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$template$#', |
|
1027 | + 'count' => 1, |
|
1028 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1029 | 1029 | ]; |
1030 | 1030 | $ignoreErrors[] = [ |
1031 | - // identifier: class.notFound |
|
1032 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\TwigAdapter\\:\\:\\$engine has unknown class Twig\\\\Environment as its type\\.$#', |
|
1033 | - 'count' => 1, |
|
1034 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1031 | + // identifier: class.notFound |
|
1032 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\TwigAdapter\\:\\:\\$engine has unknown class Twig\\\\Environment as its type\\.$#', |
|
1033 | + 'count' => 1, |
|
1034 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
1035 | 1035 | ]; |
1036 | 1036 | |
1037 | 1037 | return ['parameters' => ['ignoreErrors' => $ignoreErrors]]; |