@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | use BlitzPHP\Utilities\String\Inflector; |
13 | 13 | use BlitzPHP\Utilities\String\Text; |
14 | 14 | |
15 | -if (! function_exists('camelize')) { |
|
15 | +if (!function_exists('camelize')) { |
|
16 | 16 | /** |
17 | 17 | * Camelize |
18 | 18 | * |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | } |
27 | 27 | } |
28 | 28 | |
29 | -if (! function_exists('classify')) { |
|
29 | +if (!function_exists('classify')) { |
|
30 | 30 | /** |
31 | 31 | * Returns model class name ("Person" for the database table "people".) for given database table. |
32 | 32 | * |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | } |
41 | 41 | } |
42 | 42 | |
43 | -if (! function_exists('dasherize')) { |
|
43 | +if (!function_exists('dasherize')) { |
|
44 | 44 | /** |
45 | 45 | * Returns the input CamelCasedString as an dashed-string. |
46 | 46 | * |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | } |
57 | 57 | } |
58 | 58 | |
59 | -if (! function_exists('delimit')) { |
|
59 | +if (!function_exists('delimit')) { |
|
60 | 60 | /** |
61 | 61 | * Expects a CamelCasedInputString, and produces a lower_case_delimited_string |
62 | 62 | * |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
74 | -if (! function_exists('humanize')) { |
|
74 | +if (!function_exists('humanize')) { |
|
75 | 75 | /** |
76 | 76 | * Humanize |
77 | 77 | * |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | } |
87 | 87 | } |
88 | 88 | |
89 | -if (! function_exists('plural')) { |
|
89 | +if (!function_exists('plural')) { |
|
90 | 90 | /** |
91 | 91 | * Plural |
92 | 92 | * |
@@ -94,30 +94,30 @@ discard block |
||
94 | 94 | */ |
95 | 95 | function plural(string $str): string |
96 | 96 | { |
97 | - if (! is_countable($str)) { |
|
97 | + if (!is_countable($str)) { |
|
98 | 98 | return $str; |
99 | 99 | } |
100 | 100 | |
101 | 101 | $plural_rules = [ |
102 | - '/(quiz)$/' => '\1zes', // quizzes |
|
103 | - '/^(ox)$/' => '\1\2en', // ox |
|
104 | - '/([m|l])ouse$/' => '\1ice', // mouse, louse |
|
105 | - '/(matr|vert|ind)ix|ex$/' => '\1ices', // matrix, vertex, index |
|
106 | - '/(x|ch|ss|sh)$/' => '\1es', // search, switch, fix, box, process, address |
|
107 | - '/([^aeiouy]|qu)y$/' => '\1ies', // query, ability, agency |
|
108 | - '/(hive)$/' => '\1s', // archive, hive |
|
109 | - '/(?:([^f])fe|([lr])f)$/' => '\1\2ves', // half, safe, wife |
|
110 | - '/sis$/' => 'ses', // basis, diagnosis |
|
111 | - '/([ti])um$/' => '\1a', // datum, medium |
|
112 | - '/(p)erson$/' => '\1eople', // person, salesperson |
|
113 | - '/(m)an$/' => '\1en', // man, woman, spokesman |
|
114 | - '/(c)hild$/' => '\1hildren', // child |
|
115 | - '/(buffal|tomat)o$/' => '\1\2oes', // buffalo, tomato |
|
116 | - '/(bu|campu)s$/' => '\1\2ses', // bus, campus |
|
117 | - '/(alias|status|virus)$/' => '\1es', // alias |
|
118 | - '/(octop)us$/' => '\1i', // octopus |
|
119 | - '/(ax|cris|test)is$/' => '\1es', // axis, crisis |
|
120 | - '/s$/' => 's', // no change (compatibility) |
|
102 | + '/(quiz)$/' => '\1zes', // quizzes |
|
103 | + '/^(ox)$/' => '\1\2en', // ox |
|
104 | + '/([m|l])ouse$/' => '\1ice', // mouse, louse |
|
105 | + '/(matr|vert|ind)ix|ex$/' => '\1ices', // matrix, vertex, index |
|
106 | + '/(x|ch|ss|sh)$/' => '\1es', // search, switch, fix, box, process, address |
|
107 | + '/([^aeiouy]|qu)y$/' => '\1ies', // query, ability, agency |
|
108 | + '/(hive)$/' => '\1s', // archive, hive |
|
109 | + '/(?:([^f])fe|([lr])f)$/' => '\1\2ves', // half, safe, wife |
|
110 | + '/sis$/' => 'ses', // basis, diagnosis |
|
111 | + '/([ti])um$/' => '\1a', // datum, medium |
|
112 | + '/(p)erson$/' => '\1eople', // person, salesperson |
|
113 | + '/(m)an$/' => '\1en', // man, woman, spokesman |
|
114 | + '/(c)hild$/' => '\1hildren', // child |
|
115 | + '/(buffal|tomat)o$/' => '\1\2oes', // buffalo, tomato |
|
116 | + '/(bu|campu)s$/' => '\1\2ses', // bus, campus |
|
117 | + '/(alias|status|virus)$/' => '\1es', // alias |
|
118 | + '/(octop)us$/' => '\1i', // octopus |
|
119 | + '/(ax|cris|test)is$/' => '\1es', // axis, crisis |
|
120 | + '/s$/' => 's', // no change (compatibility) |
|
121 | 121 | '/$/' => 's', |
122 | 122 | ]; |
123 | 123 | |
@@ -134,7 +134,7 @@ discard block |
||
134 | 134 | } |
135 | 135 | } |
136 | 136 | |
137 | -if (! function_exists('pluralize')) { |
|
137 | +if (!function_exists('pluralize')) { |
|
138 | 138 | /** |
139 | 139 | * Return $word in plural form. |
140 | 140 | * |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | } |
149 | 149 | } |
150 | 150 | |
151 | -if (! function_exists('singular')) { |
|
151 | +if (!function_exists('singular')) { |
|
152 | 152 | /** |
153 | 153 | * Singular |
154 | 154 | * |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | */ |
157 | 157 | function singular(string $str): string |
158 | 158 | { |
159 | - if (! is_countable($str)) { |
|
159 | + if (!is_countable($str)) { |
|
160 | 160 | return $str; |
161 | 161 | } |
162 | 162 | |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | } |
205 | 205 | } |
206 | 206 | |
207 | -if (! function_exists('singularize')) { |
|
207 | +if (!function_exists('singularize')) { |
|
208 | 208 | /** |
209 | 209 | * Return $word in singular form. |
210 | 210 | * |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | } |
219 | 219 | } |
220 | 220 | |
221 | -if (! function_exists('tableize')) { |
|
221 | +if (!function_exists('tableize')) { |
|
222 | 222 | /** |
223 | 223 | * Returns corresponding table name for given model $className. ("people" for the model class "Person"). |
224 | 224 | * |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | } |
233 | 233 | } |
234 | 234 | |
235 | -if (! function_exists('underscore')) { |
|
235 | +if (!function_exists('underscore')) { |
|
236 | 236 | /** |
237 | 237 | * Underscore |
238 | 238 | * |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | } |
247 | 247 | } |
248 | 248 | |
249 | -if (! function_exists('variable')) { |
|
249 | +if (!function_exists('variable')) { |
|
250 | 250 | /** |
251 | 251 | * Returns camelBacked version of an underscored string. |
252 | 252 | * |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | } |
261 | 261 | } |
262 | 262 | |
263 | -if (! function_exists('counted')) { |
|
263 | +if (!function_exists('counted')) { |
|
264 | 264 | /** |
265 | 265 | * Counted |
266 | 266 | * |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | } |
279 | 279 | } |
280 | 280 | |
281 | -if (! function_exists('pascalize')) { |
|
281 | +if (!function_exists('pascalize')) { |
|
282 | 282 | /** |
283 | 283 | * Pascalize |
284 | 284 | * |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | } |
295 | 295 | } |
296 | 296 | |
297 | -if (! function_exists('is_pluralizable')) { |
|
297 | +if (!function_exists('is_pluralizable')) { |
|
298 | 298 | /** |
299 | 299 | * Checks if the given word has a plural version. |
300 | 300 | * |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | */ |
303 | 303 | function is_pluralizable(string $word): bool |
304 | 304 | { |
305 | - return ! in_array( |
|
305 | + return !in_array( |
|
306 | 306 | strtolower($word), |
307 | 307 | [ |
308 | 308 | 'advice', |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | } |
378 | 378 | } |
379 | 379 | |
380 | -if (! function_exists('ordinal')) { |
|
380 | +if (!function_exists('ordinal')) { |
|
381 | 381 | /** |
382 | 382 | * Returns the suffix that should be added to a |
383 | 383 | * number to denote the position in an ordered |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | } |
405 | 405 | } |
406 | 406 | |
407 | -if (! function_exists('ordinalize')) { |
|
407 | +if (!function_exists('ordinalize')) { |
|
408 | 408 | /** |
409 | 409 | * Turns a number into an ordinal string used |
410 | 410 | * to denote the position in an ordered sequence |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | // ================================= FONCTIONS UTIILITAIRES ESSENTIELLES ================================= // |
27 | 27 | |
28 | -if (! function_exists('env')) { |
|
28 | +if (!function_exists('env')) { |
|
29 | 29 | /** |
30 | 30 | * Obtient une variable d'environnement à partir des sources disponibles et fournit une émulation |
31 | 31 | * pour les variables d'environnement non prises en charge ou incohérentes |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | -if (! function_exists('helper')) { |
|
44 | +if (!function_exists('helper')) { |
|
45 | 45 | /** |
46 | 46 | * Charge un fichier d'aide en mémoire. Prend en charge les assistants d'espace de noms, |
47 | 47 | * à la fois dans et hors du répertoire 'helpers' d'un répertoire à espace de noms. |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | -if (! function_exists('model')) { |
|
60 | +if (!function_exists('model')) { |
|
61 | 61 | /** |
62 | 62 | * Simple maniere d'obtenir un modele. |
63 | 63 | * |
@@ -67,13 +67,13 @@ discard block |
||
67 | 67 | * |
68 | 68 | * @return T |
69 | 69 | */ |
70 | - function model(array|string $name, ?ConnectionInterface &$conn = null) |
|
70 | + function model(array|string $name, ?ConnectionInterface&$conn = null) |
|
71 | 71 | { |
72 | 72 | return Load::model($name, $conn); |
73 | 73 | } |
74 | 74 | } |
75 | 75 | |
76 | -if (! function_exists('service')) { |
|
76 | +if (!function_exists('service')) { |
|
77 | 77 | /** |
78 | 78 | * Permet un accès plus propre au fichier de configuration des services. |
79 | 79 | * Renvoie toujours une instance SHARED de la classe, donc l'appel de la fonction plusieurs fois renvera toujours la même instance. |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | } |
95 | 95 | } |
96 | 96 | |
97 | -if (! function_exists('single_service')) { |
|
97 | +if (!function_exists('single_service')) { |
|
98 | 98 | /** |
99 | 99 | * Autoriser l'accès propre à un service. |
100 | 100 | * Renvoie toujours une nouvelle instance de la classe. |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | } |
115 | 115 | } |
116 | 116 | |
117 | -if (! function_exists('show404')) { |
|
117 | +if (!function_exists('show404')) { |
|
118 | 118 | /** |
119 | 119 | * Afficher une page 404 introuvable dans le navigateur |
120 | 120 | */ |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | } |
125 | 125 | } |
126 | 126 | |
127 | -if (! function_exists('command')) { |
|
127 | +if (!function_exists('command')) { |
|
128 | 128 | /** |
129 | 129 | * Exécute une seule commande. |
130 | 130 | * Entrée attendue dans une seule chaîne comme celle qui serait utilisée sur la ligne de commande elle-même : |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | } |
187 | 187 | } |
188 | 188 | |
189 | -if (! function_exists('config')) { |
|
189 | +if (!function_exists('config')) { |
|
190 | 190 | /** |
191 | 191 | * GET/SET App config |
192 | 192 | * |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | } |
215 | 215 | } |
216 | 216 | |
217 | -if (! function_exists('logger')) { |
|
217 | +if (!function_exists('logger')) { |
|
218 | 218 | /** |
219 | 219 | * Une méthode de commodité pour les événements de journalisation via le système Log. |
220 | 220 | * |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | } |
245 | 245 | } |
246 | 246 | |
247 | -if (! function_exists('cache')) { |
|
247 | +if (!function_exists('cache')) { |
|
248 | 248 | /** |
249 | 249 | * Une méthode pratique qui donne accès au cache |
250 | 250 | * objet. Si aucun paramètre n'est fourni, renverra l'objet, |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | } |
275 | 275 | } |
276 | 276 | |
277 | -if (! function_exists('session')) { |
|
277 | +if (!function_exists('session')) { |
|
278 | 278 | /** |
279 | 279 | * Une méthode pratique pour accéder à l'instance de session, ou un élément qui a été défini dans la session. |
280 | 280 | * |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | |
300 | 300 | // =========================== FONCTIONS DE PREVENTION D'ATTAQUE =========================== // |
301 | 301 | |
302 | -if (! function_exists('esc')) { |
|
302 | +if (!function_exists('esc')) { |
|
303 | 303 | /** |
304 | 304 | * Effectue un simple échappement automatique des données pour des raisons de sécurité. |
305 | 305 | * Pourrait envisager de rendre cela plus complexe à une date ultérieure. |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | } |
327 | 327 | } |
328 | 328 | |
329 | -if (! function_exists('h')) { |
|
329 | +if (!function_exists('h')) { |
|
330 | 330 | /** |
331 | 331 | * Méthode pratique pour htmlspecialchars. |
332 | 332 | * |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | } |
346 | 346 | } |
347 | 347 | |
348 | -if (! function_exists('purify')) { |
|
348 | +if (!function_exists('purify')) { |
|
349 | 349 | /** |
350 | 350 | * Purifiez l'entrée à l'aide de la classe autonome HTMLPurifier. |
351 | 351 | * Utilisez facilement plusieurs configurations de purificateur. |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | } |
362 | 362 | } |
363 | 363 | |
364 | -if (! function_exists('remove_invisible_characters')) { |
|
364 | +if (!function_exists('remove_invisible_characters')) { |
|
365 | 365 | /** |
366 | 366 | * Supprimer les caractères invisibles |
367 | 367 | * |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | } |
375 | 375 | } |
376 | 376 | |
377 | -if (! function_exists('stringify_attributes')) { |
|
377 | +if (!function_exists('stringify_attributes')) { |
|
378 | 378 | /** |
379 | 379 | * Chaîner les attributs à utiliser dans les balises HTML. |
380 | 380 | * |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | |
389 | 389 | // ================================= FONCTIONS D'ENVIRONNEMENT D'EXECUTION ================================= // |
390 | 390 | |
391 | -if (! function_exists('environment')) { |
|
391 | +if (!function_exists('environment')) { |
|
392 | 392 | /** |
393 | 393 | * Renvoi l'environnement d'execution actuel ou determine si on est dans un environnement specifie |
394 | 394 | * |
@@ -426,7 +426,7 @@ discard block |
||
426 | 426 | } |
427 | 427 | } |
428 | 428 | |
429 | -if (! function_exists('on_dev')) { |
|
429 | +if (!function_exists('on_dev')) { |
|
430 | 430 | /** |
431 | 431 | * Testez pour voir si nous sommes dans un environnement de développement. |
432 | 432 | */ |
@@ -440,7 +440,7 @@ discard block |
||
440 | 440 | } |
441 | 441 | } |
442 | 442 | |
443 | -if (! function_exists('on_prod')) { |
|
443 | +if (!function_exists('on_prod')) { |
|
444 | 444 | /** |
445 | 445 | * Testez pour voir si nous sommes dans un environnement de production. |
446 | 446 | */ |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | } |
455 | 455 | } |
456 | 456 | |
457 | -if (! function_exists('on_test')) { |
|
457 | +if (!function_exists('on_test')) { |
|
458 | 458 | /** |
459 | 459 | * Testez pour voir si nous sommes dans un environnement de test |
460 | 460 | */ |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | } |
465 | 465 | } |
466 | 466 | |
467 | -if (! function_exists('is_cli')) { |
|
467 | +if (!function_exists('is_cli')) { |
|
468 | 468 | /** |
469 | 469 | * Testez pour voir si une demande a été faite à partir de la ligne de commande. |
470 | 470 | */ |
@@ -474,7 +474,7 @@ discard block |
||
474 | 474 | } |
475 | 475 | } |
476 | 476 | |
477 | -if (! function_exists('is_php')) { |
|
477 | +if (!function_exists('is_php')) { |
|
478 | 478 | /** |
479 | 479 | * Détermine si la version actuelle de PHP est égale ou supérieure à la valeur fournie. |
480 | 480 | */ |
@@ -484,7 +484,7 @@ discard block |
||
484 | 484 | } |
485 | 485 | } |
486 | 486 | |
487 | -if (! function_exists('is_windows')) { |
|
487 | +if (!function_exists('is_windows')) { |
|
488 | 488 | /** |
489 | 489 | * Déterminez si l'environnement actuel est basé sur Windows. |
490 | 490 | */ |
@@ -494,7 +494,7 @@ discard block |
||
494 | 494 | } |
495 | 495 | } |
496 | 496 | |
497 | -if (! function_exists('is_https')) { |
|
497 | +if (!function_exists('is_https')) { |
|
498 | 498 | /** |
499 | 499 | * Determines if the application is accessed via an encrypted * (HTTPS) connection. |
500 | 500 | */ |
@@ -504,7 +504,7 @@ discard block |
||
504 | 504 | } |
505 | 505 | } |
506 | 506 | |
507 | -if (! function_exists('is_localfile')) { |
|
507 | +if (!function_exists('is_localfile')) { |
|
508 | 508 | /** |
509 | 509 | * Vérifiez si le fichier auquel vous souhaitez accéder est un fichier local de votre application ou non |
510 | 510 | */ |
@@ -514,11 +514,11 @@ discard block |
||
514 | 514 | return true; |
515 | 515 | } |
516 | 516 | |
517 | - return ! preg_match('#^(https?://)#i', $name); |
|
517 | + return !preg_match('#^(https?://)#i', $name); |
|
518 | 518 | } |
519 | 519 | } |
520 | 520 | |
521 | -if (! function_exists('is_online')) { |
|
521 | +if (!function_exists('is_online')) { |
|
522 | 522 | /** |
523 | 523 | * Tester si l'application s'exécute en local ou en ligne. |
524 | 524 | */ |
@@ -528,7 +528,7 @@ discard block |
||
528 | 528 | } |
529 | 529 | } |
530 | 530 | |
531 | -if (! function_exists('is_connected')) { |
|
531 | +if (!function_exists('is_connected')) { |
|
532 | 532 | /** |
533 | 533 | * Verifie si l'utilisateur a une connexion internet active. |
534 | 534 | */ |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | } |
539 | 539 | } |
540 | 540 | |
541 | -if (! function_exists('is_ajax_request')) { |
|
541 | +if (!function_exists('is_ajax_request')) { |
|
542 | 542 | /** |
543 | 543 | * Testez pour voir si une requête contient l'en-tête HTTP_X_REQUESTED_WITH. |
544 | 544 | */ |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | } |
549 | 549 | } |
550 | 550 | |
551 | -if (! function_exists('redirection')) { |
|
551 | +if (!function_exists('redirection')) { |
|
552 | 552 | /** |
553 | 553 | * Redirige l'utilisateur |
554 | 554 | */ |
@@ -562,7 +562,7 @@ discard block |
||
562 | 562 | } |
563 | 563 | } |
564 | 564 | |
565 | -if (! function_exists('redirect')) { |
|
565 | +if (!function_exists('redirect')) { |
|
566 | 566 | /** |
567 | 567 | * Méthode pratique qui fonctionne avec la $request globale actuelle et |
568 | 568 | * l'instance $router à rediriger à l'aide de routes nommées et le routage inversé |
@@ -576,7 +576,7 @@ discard block |
||
576 | 576 | { |
577 | 577 | $redirection = Services::redirection(); |
578 | 578 | |
579 | - if (! empty($uri)) { |
|
579 | + if (!empty($uri)) { |
|
580 | 580 | return $redirection->route($uri); |
581 | 581 | } |
582 | 582 | |
@@ -584,7 +584,7 @@ discard block |
||
584 | 584 | } |
585 | 585 | } |
586 | 586 | |
587 | -if (! function_exists('back')) { |
|
587 | +if (!function_exists('back')) { |
|
588 | 588 | /** |
589 | 589 | * Retourne a la page precedente |
590 | 590 | * |
@@ -596,7 +596,7 @@ discard block |
||
596 | 596 | } |
597 | 597 | } |
598 | 598 | |
599 | -if (! function_exists('link_to')) { |
|
599 | +if (!function_exists('link_to')) { |
|
600 | 600 | /** |
601 | 601 | * Étant donné une chaîne de contrôleur/méthode et tous les paramètres, |
602 | 602 | * tentera de créer l'URL relative à la route correspondante. |
@@ -616,7 +616,7 @@ discard block |
||
616 | 616 | } |
617 | 617 | } |
618 | 618 | |
619 | -if (! function_exists('clean_path')) { |
|
619 | +if (!function_exists('clean_path')) { |
|
620 | 620 | /** |
621 | 621 | * Une méthode pratique pour nettoyer les chemins pour |
622 | 622 | * une sortie plus belle. Utile pour les exceptions |
@@ -648,7 +648,7 @@ discard block |
||
648 | 648 | } |
649 | 649 | } |
650 | 650 | |
651 | -if (! function_exists('old')) { |
|
651 | +if (!function_exists('old')) { |
|
652 | 652 | /** |
653 | 653 | * Fournit l'accès à "entrée ancienne" qui a été définie dans la session lors d'un redirect()-withInput(). |
654 | 654 | * |
@@ -661,7 +661,7 @@ discard block |
||
661 | 661 | function old(string $key, $default = null, $escape = 'html') |
662 | 662 | { |
663 | 663 | // Assurez-vous de charger la session |
664 | - if (session_status() === PHP_SESSION_NONE && ! on_test()) { |
|
664 | + if (session_status() === PHP_SESSION_NONE && !on_test()) { |
|
665 | 665 | session(); // @codeCoverageIgnore |
666 | 666 | } |
667 | 667 | |
@@ -676,7 +676,7 @@ discard block |
||
676 | 676 | |
677 | 677 | // ================================= FONCTIONS DE DEBOGAGE ================================= // |
678 | 678 | |
679 | -if (! function_exists('deprecationWarning')) { |
|
679 | +if (!function_exists('deprecationWarning')) { |
|
680 | 680 | /** |
681 | 681 | * Méthode d'assistance pour générer des avertissements d'obsolescence |
682 | 682 | * |
@@ -692,7 +692,7 @@ discard block |
||
692 | 692 | } |
693 | 693 | } |
694 | 694 | |
695 | -if (! function_exists('pr')) { |
|
695 | +if (!function_exists('pr')) { |
|
696 | 696 | /** |
697 | 697 | * print_r() convenience function. |
698 | 698 | * |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | } |
715 | 715 | } |
716 | 716 | |
717 | -if (! function_exists('pj')) { |
|
717 | +if (!function_exists('pj')) { |
|
718 | 718 | /** |
719 | 719 | * json pretty print convenience function. |
720 | 720 | * |
@@ -735,7 +735,7 @@ discard block |
||
735 | 735 | } |
736 | 736 | } |
737 | 737 | |
738 | -if (! function_exists('trigger_warning')) { |
|
738 | +if (!function_exists('trigger_warning')) { |
|
739 | 739 | /** |
740 | 740 | * Déclenche un E_USER_WARNING. |
741 | 741 | */ |
@@ -747,7 +747,7 @@ discard block |
||
747 | 747 | |
748 | 748 | // ================================= FONCTIONS DIVERSES ================================= // |
749 | 749 | |
750 | -if (! function_exists('force_https')) { |
|
750 | +if (!function_exists('force_https')) { |
|
751 | 751 | /** |
752 | 752 | * Utilisé pour forcer l'accès à une page via HTTPS. |
753 | 753 | * Utilise une redirection standard, plus définira l'en-tête HSTS |
@@ -805,7 +805,7 @@ discard block |
||
805 | 805 | } |
806 | 806 | } |
807 | 807 | |
808 | -if (! function_exists('get_type_name')) { |
|
808 | +if (!function_exists('get_type_name')) { |
|
809 | 809 | /** |
810 | 810 | * Renvoie la classe d'objets ou le type var de ce n'est pas un objet |
811 | 811 | * |
@@ -819,7 +819,7 @@ discard block |
||
819 | 819 | } |
820 | 820 | } |
821 | 821 | |
822 | -if (! function_exists('ip_address')) { |
|
822 | +if (!function_exists('ip_address')) { |
|
823 | 823 | /** |
824 | 824 | * Renvoie l'adresse IP de l'utilisateur actuel |
825 | 825 | */ |
@@ -829,7 +829,7 @@ discard block |
||
829 | 829 | } |
830 | 830 | } |
831 | 831 | |
832 | -if (! function_exists('is_really_writable')) { |
|
832 | +if (!function_exists('is_really_writable')) { |
|
833 | 833 | /** |
834 | 834 | * Tests d'inscriptibilité des fichiers |
835 | 835 | */ |
@@ -839,7 +839,7 @@ discard block |
||
839 | 839 | } |
840 | 840 | } |
841 | 841 | |
842 | -if (! function_exists('lang')) { |
|
842 | +if (!function_exists('lang')) { |
|
843 | 843 | /** |
844 | 844 | * Une méthode pratique pour traduire une chaîne ou un tableau d'entrées et formater |
845 | 845 | * le résultat avec le MessageFormatter de l'extension intl. |
@@ -850,7 +850,7 @@ discard block |
||
850 | 850 | } |
851 | 851 | } |
852 | 852 | |
853 | -if (! function_exists('__')) { |
|
853 | +if (!function_exists('__')) { |
|
854 | 854 | /** |
855 | 855 | * Une méthode pratique pour traduire une chaîne ou un tableau d'entrées et formater |
856 | 856 | * le résultat avec le MessageFormatter de l'extension intl. |
@@ -863,7 +863,7 @@ discard block |
||
863 | 863 | } |
864 | 864 | } |
865 | 865 | |
866 | -if (! function_exists('namespace_split')) { |
|
866 | +if (!function_exists('namespace_split')) { |
|
867 | 867 | /** |
868 | 868 | * Séparez l'espace de noms du nom de classe. |
869 | 869 | * |
@@ -884,7 +884,7 @@ discard block |
||
884 | 884 | } |
885 | 885 | } |
886 | 886 | |
887 | -if (! function_exists('view_exist')) { |
|
887 | +if (!function_exists('view_exist')) { |
|
888 | 888 | /** |
889 | 889 | * Verifie si un fichier de vue existe. Utile pour limiter les failles include |
890 | 890 | */ |
@@ -898,7 +898,7 @@ discard block |
||
898 | 898 | } |
899 | 899 | } |
900 | 900 | |
901 | -if (! function_exists('view')) { |
|
901 | +if (!function_exists('view')) { |
|
902 | 902 | /** |
903 | 903 | * Charge une vue |
904 | 904 | * |
@@ -914,7 +914,7 @@ discard block |
||
914 | 914 | } |
915 | 915 | } |
916 | 916 | |
917 | -if (! function_exists('flash')) { |
|
917 | +if (!function_exists('flash')) { |
|
918 | 918 | /** |
919 | 919 | * Fournisseur d'acces rapide a la classe PHP Flash |
920 | 920 | * |
@@ -946,7 +946,7 @@ discard block |
||
946 | 946 | }*/ |
947 | 947 | } |
948 | 948 | |
949 | -if (! function_exists('geo_ip')) { |
|
949 | +if (!function_exists('geo_ip')) { |
|
950 | 950 | /** |
951 | 951 | * Recuperation des coordonnees (pays, ville, etc) d'un utilisateur en fonction de son ip |
952 | 952 | */ |
@@ -956,7 +956,7 @@ discard block |
||
956 | 956 | } |
957 | 957 | } |
958 | 958 | |
959 | -if (! function_exists('to_stream')) { |
|
959 | +if (!function_exists('to_stream')) { |
|
960 | 960 | /** |
961 | 961 | * Créez un nouveau flux basé sur le type d'entrée. |
962 | 962 | * |
@@ -977,7 +977,7 @@ discard block |
||
977 | 977 | } |
978 | 978 | } |
979 | 979 | |
980 | -if (! function_exists('value')) { |
|
980 | +if (!function_exists('value')) { |
|
981 | 981 | /** |
982 | 982 | * Renvoie la valeur par défaut de la valeur donnée. |
983 | 983 | */ |
@@ -987,7 +987,7 @@ discard block |
||
987 | 987 | } |
988 | 988 | } |
989 | 989 | |
990 | -if (! function_exists('collect')) { |
|
990 | +if (!function_exists('collect')) { |
|
991 | 991 | /** |
992 | 992 | * Créez une collection à partir de la valeur donnée. |
993 | 993 | */ |
@@ -997,7 +997,7 @@ discard block |
||
997 | 997 | } |
998 | 998 | } |
999 | 999 | |
1000 | -if (! function_exists('with')) { |
|
1000 | +if (!function_exists('with')) { |
|
1001 | 1001 | /** |
1002 | 1002 | * Renvoie la valeur donnée, éventuellement transmise via le rappel donné. |
1003 | 1003 | * |
@@ -1009,7 +1009,7 @@ discard block |
||
1009 | 1009 | } |
1010 | 1010 | } |
1011 | 1011 | |
1012 | -if (! function_exists('tap')) { |
|
1012 | +if (!function_exists('tap')) { |
|
1013 | 1013 | /** |
1014 | 1014 | * Appelez la Closure donnée avec cette instance puis renvoyez l'instance. |
1015 | 1015 | */ |
@@ -1019,7 +1019,7 @@ discard block |
||
1019 | 1019 | } |
1020 | 1020 | } |
1021 | 1021 | |
1022 | -if (! function_exists('last')) { |
|
1022 | +if (!function_exists('last')) { |
|
1023 | 1023 | /** |
1024 | 1024 | * Recupere le dernier element d'un tableau |
1025 | 1025 | */ |
@@ -1029,7 +1029,7 @@ discard block |
||
1029 | 1029 | } |
1030 | 1030 | } |
1031 | 1031 | |
1032 | -if (! function_exists('invade')) { |
|
1032 | +if (!function_exists('invade')) { |
|
1033 | 1033 | /** |
1034 | 1034 | * Cette classe offre une fonction d'invasion qui vous permettra de lire / écrire des propriétés privées d'un objet. |
1035 | 1035 | * Il vous permettra également de définir, obtenir et appeler des méthodes privées. |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | public function __construct(bool $debug = false) |
33 | 33 | { |
34 | 34 | $this->mailer = new Mailer(); |
35 | - $this->mailer->Debugoutput = static function ($str, $level) { |
|
35 | + $this->mailer->Debugoutput = static function($str, $level) { |
|
36 | 36 | Services::logger()->info('[Mail][' . $level . ']: ' . $str); |
37 | 37 | }; |
38 | 38 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | public function init(array $config): static |
46 | 46 | { |
47 | - if (! empty($config['username']) && ! empty($config['password'])) { |
|
47 | + if (!empty($config['username']) && !empty($config['password'])) { |
|
48 | 48 | $this->mailer->SMTPAuth = true; |
49 | 49 | } |
50 | 50 |
@@ -2,794 +2,794 @@ |
||
2 | 2 | |
3 | 3 | $ignoreErrors = []; |
4 | 4 | $ignoreErrors[] = [ |
5 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#', |
|
6 | - 'count' => 1, |
|
7 | - 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
5 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:errorBold\\(\\)\\.$#', |
|
6 | + 'count' => 1, |
|
7 | + 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
8 | 8 | ]; |
9 | 9 | $ignoreErrors[] = [ |
10 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#', |
|
11 | - 'count' => 1, |
|
12 | - 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
10 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:infoBold\\(\\)\\.$#', |
|
11 | + 'count' => 1, |
|
12 | + 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
13 | 13 | ]; |
14 | 14 | $ignoreErrors[] = [ |
15 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#', |
|
16 | - 'count' => 1, |
|
17 | - 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
15 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:okBold\\(\\)\\.$#', |
|
16 | + 'count' => 1, |
|
17 | + 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
18 | 18 | ]; |
19 | 19 | $ignoreErrors[] = [ |
20 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#', |
|
21 | - 'count' => 1, |
|
22 | - 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
20 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:warnBold\\(\\)\\.$#', |
|
21 | + 'count' => 1, |
|
22 | + 'path' => __DIR__ . '/src/Cli/Console/Command.php', |
|
23 | 23 | ]; |
24 | 24 | $ignoreErrors[] = [ |
25 | - 'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#', |
|
26 | - 'count' => 1, |
|
27 | - 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
25 | + 'message' => '#^Access to an undefined property Ahc\\\\Cli\\\\Output\\\\Writer\\:\\:\\$bold\\.$#', |
|
26 | + 'count' => 1, |
|
27 | + 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
28 | 28 | ]; |
29 | 29 | $ignoreErrors[] = [ |
30 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#', |
|
31 | - 'count' => 2, |
|
32 | - 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
30 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\Application\\|Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#', |
|
31 | + 'count' => 2, |
|
32 | + 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
33 | 33 | ]; |
34 | 34 | $ignoreErrors[] = [ |
35 | - 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#', |
|
36 | - 'count' => 1, |
|
37 | - 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
35 | + 'message' => '#^Call to an undefined method Ahc\\\\Cli\\\\IO\\\\Interactor\\:\\:write\\(\\)\\.$#', |
|
36 | + 'count' => 1, |
|
37 | + 'path' => __DIR__ . '/src/Cli/Console/Console.php', |
|
38 | 38 | ]; |
39 | 39 | $ignoreErrors[] = [ |
40 | - 'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#', |
|
41 | - 'count' => 1, |
|
42 | - 'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php', |
|
40 | + 'message' => '#^Call to an undefined static method Nette\\\\Schema\\\\Expect\\:\\:closure\\(\\)\\.$#', |
|
41 | + 'count' => 1, |
|
42 | + 'path' => __DIR__ . '/src/Constants/schemas/middlewares.config.php', |
|
43 | 43 | ]; |
44 | 44 | $ignoreErrors[] = [ |
45 | - 'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#', |
|
46 | - 'count' => 1, |
|
47 | - 'path' => __DIR__ . '/src/Controllers/RestController.php', |
|
45 | + 'message' => '#^Access to an undefined property mindplay\\\\annotations\\\\IAnnotation\\:\\:\\$method\\.$#', |
|
46 | + 'count' => 1, |
|
47 | + 'path' => __DIR__ . '/src/Controllers/RestController.php', |
|
48 | 48 | ]; |
49 | 49 | $ignoreErrors[] = [ |
50 | - 'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#', |
|
51 | - 'count' => 1, |
|
52 | - 'path' => __DIR__ . '/src/Debug/Debugger.php', |
|
50 | + 'message' => '#^Call to static method make\\(\\) on an unknown class Spatie\\\\Ignition\\\\Ignition\\.$#', |
|
51 | + 'count' => 1, |
|
52 | + 'path' => __DIR__ . '/src/Debug/Debugger.php', |
|
53 | 53 | ]; |
54 | 54 | $ignoreErrors[] = [ |
55 | - '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$#', |
|
56 | - 'count' => 1, |
|
57 | - 'path' => __DIR__ . '/src/Facades/Route.php', |
|
55 | + '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$#', |
|
56 | + 'count' => 1, |
|
57 | + 'path' => __DIR__ . '/src/Facades/Route.php', |
|
58 | 58 | ]; |
59 | 59 | $ignoreErrors[] = [ |
60 | - 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getAcceptableContentTypes\\(\\)\\.$#', |
|
61 | - 'count' => 4, |
|
62 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
60 | + 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getAcceptableContentTypes\\(\\)\\.$#', |
|
61 | + 'count' => 4, |
|
62 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
63 | 63 | ]; |
64 | 64 | $ignoreErrors[] = [ |
65 | - 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#', |
|
66 | - 'count' => 1, |
|
67 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
65 | + 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getFormat\\(\\)\\.$#', |
|
66 | + 'count' => 1, |
|
67 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
68 | 68 | ]; |
69 | 69 | $ignoreErrors[] = [ |
70 | - 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#', |
|
71 | - 'count' => 1, |
|
72 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
70 | + 'message' => '#^Call to an undefined method BlitzPHP\\\\Http\\\\Request\\:\\:getMimeType\\(\\)\\.$#', |
|
71 | + 'count' => 1, |
|
72 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
73 | 73 | ]; |
74 | 74 | $ignoreErrors[] = [ |
75 | - 'message' => '#^Call to an undefined method BlitzPHP\\\\Session\\\\Store\\:\\:flashInput\\(\\)\\.$#', |
|
76 | - 'count' => 4, |
|
77 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
75 | + 'message' => '#^Call to an undefined method BlitzPHP\\\\Session\\\\Store\\:\\:flashInput\\(\\)\\.$#', |
|
76 | + 'count' => 4, |
|
77 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
78 | 78 | ]; |
79 | 79 | $ignoreErrors[] = [ |
80 | - 'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#', |
|
81 | - 'count' => 1, |
|
82 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
80 | + 'message' => '#^Method BlitzPHP\\\\Http\\\\Request\\:\\:validation\\(\\) should return BlitzPHP\\\\Validation\\\\Validation but returns Dimtrovich\\\\Validation\\\\Validation\\.$#', |
|
81 | + 'count' => 1, |
|
82 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
83 | 83 | ]; |
84 | 84 | $ignoreErrors[] = [ |
85 | - 'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#', |
|
86 | - 'count' => 1, |
|
87 | - 'path' => __DIR__ . '/src/Http/Request.php', |
|
85 | + 'message' => '#^Parameter \\$default of method BlitzPHP\\\\Http\\\\Request\\:\\:old\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#', |
|
86 | + 'count' => 1, |
|
87 | + 'path' => __DIR__ . '/src/Http/Request.php', |
|
88 | 88 | ]; |
89 | 89 | $ignoreErrors[] = [ |
90 | - 'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#', |
|
91 | - 'count' => 1, |
|
92 | - 'path' => __DIR__ . '/src/Http/Response.php', |
|
90 | + 'message' => '#^Call to an undefined method DateTimeInterface\\:\\:setTimezone\\(\\)\\.$#', |
|
91 | + 'count' => 1, |
|
92 | + 'path' => __DIR__ . '/src/Http/Response.php', |
|
93 | 93 | ]; |
94 | 94 | $ignoreErrors[] = [ |
95 | - 'message' => '#^Property BlitzPHP\\\\Http\\\\ServerRequest\\:\\:\\$uploadedFiles \\(array\\<BlitzPHP\\\\Filesystem\\\\Files\\\\UploadedFile\\>\\) does not accept array\\<array\\<BlitzPHP\\\\Filesystem\\\\Files\\\\UploadedFile\\>\\|Psr\\\\Http\\\\Message\\\\UploadedFileInterface\\>\\.$#', |
|
96 | - 'count' => 1, |
|
97 | - 'path' => __DIR__ . '/src/Http/ServerRequest.php', |
|
95 | + 'message' => '#^Property BlitzPHP\\\\Http\\\\ServerRequest\\:\\:\\$uploadedFiles \\(array\\<BlitzPHP\\\\Filesystem\\\\Files\\\\UploadedFile\\>\\) does not accept array\\<array\\<BlitzPHP\\\\Filesystem\\\\Files\\\\UploadedFile\\>\\|Psr\\\\Http\\\\Message\\\\UploadedFileInterface\\>\\.$#', |
|
96 | + 'count' => 1, |
|
97 | + 'path' => __DIR__ . '/src/Http/ServerRequest.php', |
|
98 | 98 | ]; |
99 | 99 | $ignoreErrors[] = [ |
100 | - 'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#', |
|
101 | - 'count' => 1, |
|
102 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
100 | + 'message' => '#^Access to constant DEBUG_SERVER on an unknown class PHPMailer\\\\PHPMailer\\\\SMTP\\.$#', |
|
101 | + 'count' => 1, |
|
102 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
103 | 103 | ]; |
104 | 104 | $ignoreErrors[] = [ |
105 | - 'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
106 | - 'count' => 2, |
|
107 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
105 | + 'message' => '#^Access to property \\$AltBody on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
106 | + 'count' => 2, |
|
107 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
108 | 108 | ]; |
109 | 109 | $ignoreErrors[] = [ |
110 | - 'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
111 | - 'count' => 2, |
|
112 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
110 | + 'message' => '#^Access to property \\$Body on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
111 | + 'count' => 2, |
|
112 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
113 | 113 | ]; |
114 | 114 | $ignoreErrors[] = [ |
115 | - 'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
116 | - 'count' => 2, |
|
117 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
115 | + 'message' => '#^Access to property \\$CharSet on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
116 | + 'count' => 2, |
|
117 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
118 | 118 | ]; |
119 | 119 | $ignoreErrors[] = [ |
120 | - 'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
121 | - 'count' => 2, |
|
122 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
120 | + 'message' => '#^Access to property \\$DKIM_domain on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
121 | + 'count' => 2, |
|
122 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
123 | 123 | ]; |
124 | 124 | $ignoreErrors[] = [ |
125 | - 'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
126 | - 'count' => 2, |
|
127 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
125 | + 'message' => '#^Access to property \\$DKIM_identity on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
126 | + 'count' => 2, |
|
127 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
128 | 128 | ]; |
129 | 129 | $ignoreErrors[] = [ |
130 | - 'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
131 | - 'count' => 2, |
|
132 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
130 | + 'message' => '#^Access to property \\$DKIM_passphrase on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
131 | + 'count' => 2, |
|
132 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
133 | 133 | ]; |
134 | 134 | $ignoreErrors[] = [ |
135 | - 'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
136 | - 'count' => 2, |
|
137 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
135 | + 'message' => '#^Access to property \\$DKIM_private on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
136 | + 'count' => 2, |
|
137 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
138 | 138 | ]; |
139 | 139 | $ignoreErrors[] = [ |
140 | - 'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
141 | - 'count' => 2, |
|
142 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
140 | + 'message' => '#^Access to property \\$DKIM_selector on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
141 | + 'count' => 2, |
|
142 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
143 | 143 | ]; |
144 | 144 | $ignoreErrors[] = [ |
145 | - 'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
146 | - 'count' => 2, |
|
147 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
145 | + 'message' => '#^Access to property \\$Debugoutput on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
146 | + 'count' => 2, |
|
147 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
148 | 148 | ]; |
149 | 149 | $ignoreErrors[] = [ |
150 | - 'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
151 | - 'count' => 1, |
|
152 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
150 | + 'message' => '#^Access to property \\$From on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
151 | + 'count' => 1, |
|
152 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
153 | 153 | ]; |
154 | 154 | $ignoreErrors[] = [ |
155 | - 'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
156 | - 'count' => 2, |
|
157 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
155 | + 'message' => '#^Access to property \\$Host on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
156 | + 'count' => 2, |
|
157 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
158 | 158 | ]; |
159 | 159 | $ignoreErrors[] = [ |
160 | - 'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
161 | - 'count' => 2, |
|
162 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
160 | + 'message' => '#^Access to property \\$Password on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
161 | + 'count' => 2, |
|
162 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
163 | 163 | ]; |
164 | 164 | $ignoreErrors[] = [ |
165 | - 'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
166 | - 'count' => 2, |
|
167 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
165 | + 'message' => '#^Access to property \\$Port on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
166 | + 'count' => 2, |
|
167 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
168 | 168 | ]; |
169 | 169 | $ignoreErrors[] = [ |
170 | - 'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
171 | - 'count' => 2, |
|
172 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
170 | + 'message' => '#^Access to property \\$Priority on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
171 | + 'count' => 2, |
|
172 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
173 | 173 | ]; |
174 | 174 | $ignoreErrors[] = [ |
175 | - 'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
176 | - 'count' => 2, |
|
177 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
175 | + 'message' => '#^Access to property \\$SMTPAuth on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
176 | + 'count' => 2, |
|
177 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
178 | 178 | ]; |
179 | 179 | $ignoreErrors[] = [ |
180 | - 'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
181 | - 'count' => 2, |
|
182 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
180 | + 'message' => '#^Access to property \\$SMTPDebug on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
181 | + 'count' => 2, |
|
182 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
183 | 183 | ]; |
184 | 184 | $ignoreErrors[] = [ |
185 | - 'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
186 | - 'count' => 2, |
|
187 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
185 | + 'message' => '#^Access to property \\$SMTPSecure on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
186 | + 'count' => 2, |
|
187 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
188 | 188 | ]; |
189 | 189 | $ignoreErrors[] = [ |
190 | - 'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
191 | - 'count' => 2, |
|
192 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
190 | + 'message' => '#^Access to property \\$Subject on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
191 | + 'count' => 2, |
|
192 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
193 | 193 | ]; |
194 | 194 | $ignoreErrors[] = [ |
195 | - 'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
196 | - 'count' => 2, |
|
197 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
195 | + 'message' => '#^Access to property \\$Timeout on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
196 | + 'count' => 2, |
|
197 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
198 | 198 | ]; |
199 | 199 | $ignoreErrors[] = [ |
200 | - 'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
201 | - 'count' => 2, |
|
202 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
200 | + 'message' => '#^Access to property \\$Username on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
201 | + 'count' => 2, |
|
202 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
203 | 203 | ]; |
204 | 204 | $ignoreErrors[] = [ |
205 | - 'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
206 | - 'count' => 1, |
|
207 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
205 | + 'message' => '#^Call to method addAddress\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
206 | + 'count' => 1, |
|
207 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
208 | 208 | ]; |
209 | 209 | $ignoreErrors[] = [ |
210 | - 'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
211 | - 'count' => 1, |
|
212 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
210 | + 'message' => '#^Call to method addAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
211 | + 'count' => 1, |
|
212 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
213 | 213 | ]; |
214 | 214 | $ignoreErrors[] = [ |
215 | - 'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
216 | - 'count' => 1, |
|
217 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
215 | + 'message' => '#^Call to method addBCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
216 | + 'count' => 1, |
|
217 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
218 | 218 | ]; |
219 | 219 | $ignoreErrors[] = [ |
220 | - 'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
221 | - 'count' => 1, |
|
222 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
220 | + 'message' => '#^Call to method addCC\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
221 | + 'count' => 1, |
|
222 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
223 | 223 | ]; |
224 | 224 | $ignoreErrors[] = [ |
225 | - 'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
226 | - 'count' => 1, |
|
227 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
225 | + 'message' => '#^Call to method addCustomHeader\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
226 | + 'count' => 1, |
|
227 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
228 | 228 | ]; |
229 | 229 | $ignoreErrors[] = [ |
230 | - 'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
231 | - 'count' => 1, |
|
232 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
230 | + 'message' => '#^Call to method addEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
231 | + 'count' => 1, |
|
232 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
233 | 233 | ]; |
234 | 234 | $ignoreErrors[] = [ |
235 | - 'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
236 | - 'count' => 1, |
|
237 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
235 | + 'message' => '#^Call to method addReplyTo\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
236 | + 'count' => 1, |
|
237 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
238 | 238 | ]; |
239 | 239 | $ignoreErrors[] = [ |
240 | - 'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
241 | - 'count' => 1, |
|
242 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
240 | + 'message' => '#^Call to method addStringAttachment\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
241 | + 'count' => 1, |
|
242 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
243 | 243 | ]; |
244 | 244 | $ignoreErrors[] = [ |
245 | - 'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
246 | - 'count' => 1, |
|
247 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
245 | + 'message' => '#^Call to method addStringEmbeddedImage\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
246 | + 'count' => 1, |
|
247 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
248 | 248 | ]; |
249 | 249 | $ignoreErrors[] = [ |
250 | - 'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
251 | - 'count' => 1, |
|
252 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
250 | + 'message' => '#^Call to method clearAddresses\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
251 | + 'count' => 1, |
|
252 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
253 | 253 | ]; |
254 | 254 | $ignoreErrors[] = [ |
255 | - 'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
256 | - 'count' => 1, |
|
257 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
255 | + 'message' => '#^Call to method clearBCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
256 | + 'count' => 1, |
|
257 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
258 | 258 | ]; |
259 | 259 | $ignoreErrors[] = [ |
260 | - 'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
261 | - 'count' => 1, |
|
262 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
260 | + 'message' => '#^Call to method clearCCs\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
261 | + 'count' => 1, |
|
262 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
263 | 263 | ]; |
264 | 264 | $ignoreErrors[] = [ |
265 | - 'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
266 | - 'count' => 1, |
|
267 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
265 | + 'message' => '#^Call to method clearReplyTos\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
266 | + 'count' => 1, |
|
267 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
268 | 268 | ]; |
269 | 269 | $ignoreErrors[] = [ |
270 | - 'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
271 | - 'count' => 1, |
|
272 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
270 | + 'message' => '#^Call to method getLastMessageID\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
271 | + 'count' => 1, |
|
272 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
273 | 273 | ]; |
274 | 274 | $ignoreErrors[] = [ |
275 | - 'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
276 | - 'count' => 2, |
|
277 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
275 | + 'message' => '#^Call to method isHTML\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
276 | + 'count' => 2, |
|
277 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
278 | 278 | ]; |
279 | 279 | $ignoreErrors[] = [ |
280 | - 'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
281 | - 'count' => 1, |
|
282 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
280 | + 'message' => '#^Call to method isMail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
281 | + 'count' => 1, |
|
282 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
283 | 283 | ]; |
284 | 284 | $ignoreErrors[] = [ |
285 | - 'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
286 | - 'count' => 1, |
|
287 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
285 | + 'message' => '#^Call to method isQmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
286 | + 'count' => 1, |
|
287 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
288 | 288 | ]; |
289 | 289 | $ignoreErrors[] = [ |
290 | - 'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
291 | - 'count' => 1, |
|
292 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
290 | + 'message' => '#^Call to method isSMTP\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
291 | + 'count' => 1, |
|
292 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
293 | 293 | ]; |
294 | 294 | $ignoreErrors[] = [ |
295 | - 'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
296 | - 'count' => 1, |
|
297 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
295 | + 'message' => '#^Call to method isSendmail\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
296 | + 'count' => 1, |
|
297 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
298 | 298 | ]; |
299 | 299 | $ignoreErrors[] = [ |
300 | - 'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
301 | - 'count' => 1, |
|
302 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
300 | + 'message' => '#^Call to method send\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
301 | + 'count' => 1, |
|
302 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
303 | 303 | ]; |
304 | 304 | $ignoreErrors[] = [ |
305 | - 'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
306 | - 'count' => 1, |
|
307 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
305 | + 'message' => '#^Call to method setFrom\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
306 | + 'count' => 1, |
|
307 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
308 | 308 | ]; |
309 | 309 | $ignoreErrors[] = [ |
310 | - 'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
311 | - 'count' => 1, |
|
312 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
310 | + 'message' => '#^Call to method sign\\(\\) on an unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer\\.$#', |
|
311 | + 'count' => 1, |
|
312 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
313 | 313 | ]; |
314 | 314 | $ignoreErrors[] = [ |
315 | - 'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#', |
|
316 | - 'count' => 1, |
|
317 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
315 | + 'message' => '#^Class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#', |
|
316 | + 'count' => 1, |
|
317 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
318 | 318 | ]; |
319 | 319 | $ignoreErrors[] = [ |
320 | - 'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#', |
|
321 | - 'count' => 1, |
|
322 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
320 | + 'message' => '#^Instantiated class PHPMailer\\\\PHPMailer\\\\PHPMailer not found\\.$#', |
|
321 | + 'count' => 1, |
|
322 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
323 | 323 | ]; |
324 | 324 | $ignoreErrors[] = [ |
325 | - 'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#', |
|
326 | - 'count' => 11, |
|
327 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
325 | + 'message' => '#^PHPDoc tag @throws with type PHPMailer\\\\PHPMailer\\\\Exception is not subtype of Throwable$#', |
|
326 | + 'count' => 11, |
|
327 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
328 | 328 | ]; |
329 | 329 | $ignoreErrors[] = [ |
330 | - 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#', |
|
331 | - 'count' => 1, |
|
332 | - 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
330 | + 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\PHPMailer\\:\\:\\$mailer has unknown class PHPMailer\\\\PHPMailer\\\\PHPMailer as its type\\.$#', |
|
331 | + 'count' => 1, |
|
332 | + 'path' => __DIR__ . '/src/Mail/Adapters/PHPMailer.php', |
|
333 | 333 | ]; |
334 | 334 | $ignoreErrors[] = [ |
335 | - 'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
336 | - 'count' => 1, |
|
337 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
335 | + 'message' => '#^Call to method addBcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
336 | + 'count' => 1, |
|
337 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
338 | 338 | ]; |
339 | 339 | $ignoreErrors[] = [ |
340 | - 'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
341 | - 'count' => 1, |
|
342 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
340 | + 'message' => '#^Call to method addCC\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
341 | + 'count' => 1, |
|
342 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
343 | 343 | ]; |
344 | 344 | $ignoreErrors[] = [ |
345 | - 'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
346 | - 'count' => 4, |
|
347 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
345 | + 'message' => '#^Call to method addPart\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
346 | + 'count' => 4, |
|
347 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
348 | 348 | ]; |
349 | 349 | $ignoreErrors[] = [ |
350 | - 'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
351 | - 'count' => 1, |
|
352 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
350 | + 'message' => '#^Call to method addReplyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
351 | + 'count' => 1, |
|
352 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
353 | 353 | ]; |
354 | 354 | $ignoreErrors[] = [ |
355 | - 'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
356 | - 'count' => 1, |
|
357 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
355 | + 'message' => '#^Call to method addTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
356 | + 'count' => 1, |
|
357 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
358 | 358 | ]; |
359 | 359 | $ignoreErrors[] = [ |
360 | - 'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#', |
|
361 | - 'count' => 2, |
|
362 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
360 | + 'message' => '#^Call to method asInline\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart\\.$#', |
|
361 | + 'count' => 2, |
|
362 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
363 | 363 | ]; |
364 | 364 | $ignoreErrors[] = [ |
365 | - 'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
366 | - 'count' => 1, |
|
367 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
365 | + 'message' => '#^Call to method bcc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
366 | + 'count' => 1, |
|
367 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
368 | 368 | ]; |
369 | 369 | $ignoreErrors[] = [ |
370 | - 'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
371 | - 'count' => 1, |
|
372 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
370 | + 'message' => '#^Call to method cc\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
371 | + 'count' => 1, |
|
372 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
373 | 373 | ]; |
374 | 374 | $ignoreErrors[] = [ |
375 | - 'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
376 | - 'count' => 1, |
|
377 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
375 | + 'message' => '#^Call to method from\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
376 | + 'count' => 1, |
|
377 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
378 | 378 | ]; |
379 | 379 | $ignoreErrors[] = [ |
380 | - 'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
381 | - 'count' => 1, |
|
382 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
380 | + 'message' => '#^Call to method generateMessageId\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
381 | + 'count' => 1, |
|
382 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
383 | 383 | ]; |
384 | 384 | $ignoreErrors[] = [ |
385 | - 'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
386 | - 'count' => 1, |
|
387 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
385 | + 'message' => '#^Call to method getHeaders\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
386 | + 'count' => 1, |
|
387 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
388 | 388 | ]; |
389 | 389 | $ignoreErrors[] = [ |
390 | - 'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
391 | - 'count' => 1, |
|
392 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
390 | + 'message' => '#^Call to method html\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
391 | + 'count' => 1, |
|
392 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
393 | 393 | ]; |
394 | 394 | $ignoreErrors[] = [ |
395 | - 'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
396 | - 'count' => 1, |
|
397 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
395 | + 'message' => '#^Call to method priority\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
396 | + 'count' => 1, |
|
397 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
398 | 398 | ]; |
399 | 399 | $ignoreErrors[] = [ |
400 | - 'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
401 | - 'count' => 1, |
|
402 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
400 | + 'message' => '#^Call to method replyTo\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
401 | + 'count' => 1, |
|
402 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
403 | 403 | ]; |
404 | 404 | $ignoreErrors[] = [ |
405 | - 'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#', |
|
406 | - 'count' => 1, |
|
407 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
405 | + 'message' => '#^Call to method send\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#', |
|
406 | + 'count' => 1, |
|
407 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
408 | 408 | ]; |
409 | 409 | $ignoreErrors[] = [ |
410 | - 'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#', |
|
411 | - 'count' => 1, |
|
412 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
410 | + 'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner\\.$#', |
|
411 | + 'count' => 1, |
|
412 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
413 | 413 | ]; |
414 | 414 | $ignoreErrors[] = [ |
415 | - 'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#', |
|
416 | - 'count' => 1, |
|
417 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
415 | + 'message' => '#^Call to method sign\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner\\.$#', |
|
416 | + 'count' => 1, |
|
417 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
418 | 418 | ]; |
419 | 419 | $ignoreErrors[] = [ |
420 | - 'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
421 | - 'count' => 1, |
|
422 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
420 | + 'message' => '#^Call to method subject\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
421 | + 'count' => 1, |
|
422 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
423 | 423 | ]; |
424 | 424 | $ignoreErrors[] = [ |
425 | - 'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
426 | - 'count' => 1, |
|
427 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
425 | + 'message' => '#^Call to method text\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
426 | + 'count' => 1, |
|
427 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
428 | 428 | ]; |
429 | 429 | $ignoreErrors[] = [ |
430 | - 'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
431 | - 'count' => 1, |
|
432 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
430 | + 'message' => '#^Call to method to\\(\\) on an unknown class Symfony\\\\Component\\\\Mime\\\\Email\\.$#', |
|
431 | + 'count' => 1, |
|
432 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
433 | 433 | ]; |
434 | 434 | $ignoreErrors[] = [ |
435 | - 'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#', |
|
436 | - 'count' => 1, |
|
437 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
435 | + 'message' => '#^Call to static method fromDsn\\(\\) on an unknown class Symfony\\\\Component\\\\Mailer\\\\Transport\\.$#', |
|
436 | + 'count' => 1, |
|
437 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
438 | 438 | ]; |
439 | 439 | $ignoreErrors[] = [ |
440 | - 'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#', |
|
441 | - 'count' => 1, |
|
442 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
440 | + 'message' => '#^Class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#', |
|
441 | + 'count' => 1, |
|
442 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
443 | 443 | ]; |
444 | 444 | $ignoreErrors[] = [ |
445 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#', |
|
446 | - 'count' => 1, |
|
447 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
445 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mailer\\\\Mailer not found\\.$#', |
|
446 | + 'count' => 1, |
|
447 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
448 | 448 | ]; |
449 | 449 | $ignoreErrors[] = [ |
450 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#', |
|
451 | - 'count' => 1, |
|
452 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
450 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Address not found\\.$#', |
|
451 | + 'count' => 1, |
|
452 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
453 | 453 | ]; |
454 | 454 | $ignoreErrors[] = [ |
455 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#', |
|
456 | - 'count' => 1, |
|
457 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
455 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\DkimSigner not found\\.$#', |
|
456 | + 'count' => 1, |
|
457 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
458 | 458 | ]; |
459 | 459 | $ignoreErrors[] = [ |
460 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#', |
|
461 | - 'count' => 1, |
|
462 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
460 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Crypto\\\\SMimeSigner not found\\.$#', |
|
461 | + 'count' => 1, |
|
462 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
463 | 463 | ]; |
464 | 464 | $ignoreErrors[] = [ |
465 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#', |
|
466 | - 'count' => 1, |
|
467 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
465 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Email not found\\.$#', |
|
466 | + 'count' => 1, |
|
467 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
468 | 468 | ]; |
469 | 469 | $ignoreErrors[] = [ |
470 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#', |
|
471 | - 'count' => 4, |
|
472 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
470 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\DataPart not found\\.$#', |
|
471 | + 'count' => 4, |
|
472 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
473 | 473 | ]; |
474 | 474 | $ignoreErrors[] = [ |
475 | - 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#', |
|
476 | - 'count' => 2, |
|
477 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
475 | + 'message' => '#^Instantiated class Symfony\\\\Component\\\\Mime\\\\Part\\\\File not found\\.$#', |
|
476 | + 'count' => 2, |
|
477 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
478 | 478 | ]; |
479 | 479 | $ignoreErrors[] = [ |
480 | - 'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#', |
|
481 | - 'count' => 1, |
|
482 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
480 | + 'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:makeAddress\\(\\) has invalid return type Symfony\\\\Component\\\\Mime\\\\Address\\.$#', |
|
481 | + 'count' => 1, |
|
482 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
483 | 483 | ]; |
484 | 484 | $ignoreErrors[] = [ |
485 | - 'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#', |
|
486 | - 'count' => 1, |
|
487 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
485 | + 'message' => '#^Method BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:transporter\\(\\) has invalid return type Symfony\\\\Component\\\\Mailer\\\\Mailer\\.$#', |
|
486 | + 'count' => 1, |
|
487 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
488 | 488 | ]; |
489 | 489 | $ignoreErrors[] = [ |
490 | - 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#', |
|
491 | - 'count' => 1, |
|
492 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
490 | + 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$mailer has unknown class Symfony\\\\Component\\\\Mime\\\\Email as its type\\.$#', |
|
491 | + 'count' => 1, |
|
492 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
493 | 493 | ]; |
494 | 494 | $ignoreErrors[] = [ |
495 | - 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#', |
|
496 | - 'count' => 1, |
|
497 | - 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
495 | + 'message' => '#^Property BlitzPHP\\\\Mail\\\\Adapters\\\\SymfonyMailer\\:\\:\\$transporter has unknown class Symfony\\\\Component\\\\Mailer\\\\Mailer as its type\\.$#', |
|
496 | + 'count' => 1, |
|
497 | + 'path' => __DIR__ . '/src/Mail/Adapters/SymfonyMailer.php', |
|
498 | 498 | ]; |
499 | 499 | $ignoreErrors[] = [ |
500 | - 'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\ServerRequest\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#', |
|
501 | - 'count' => 1, |
|
502 | - 'path' => __DIR__ . '/src/Router/Dispatcher.php', |
|
500 | + 'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$request \\(BlitzPHP\\\\Http\\\\ServerRequest\\) does not accept Psr\\\\Http\\\\Message\\\\ServerRequestInterface\\.$#', |
|
501 | + 'count' => 1, |
|
502 | + 'path' => __DIR__ . '/src/Router/Dispatcher.php', |
|
503 | 503 | ]; |
504 | 504 | $ignoreErrors[] = [ |
505 | - 'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#', |
|
506 | - 'count' => 4, |
|
507 | - 'path' => __DIR__ . '/src/Router/Dispatcher.php', |
|
505 | + 'message' => '#^Property BlitzPHP\\\\Router\\\\Dispatcher\\:\\:\\$response \\(BlitzPHP\\\\Http\\\\Response\\) does not accept Psr\\\\Http\\\\Message\\\\ResponseInterface\\.$#', |
|
506 | + 'count' => 4, |
|
507 | + 'path' => __DIR__ . '/src/Router/Dispatcher.php', |
|
508 | 508 | ]; |
509 | 509 | $ignoreErrors[] = [ |
510 | - 'message' => '#^Call to method getKeyName\\(\\) on an unknown class BlitzPHP\\\\Wolke\\\\Model\\.$#', |
|
511 | - 'count' => 1, |
|
512 | - 'path' => __DIR__ . '/src/Validation/Rules/Unique.php', |
|
510 | + 'message' => '#^Call to method getKeyName\\(\\) on an unknown class BlitzPHP\\\\Wolke\\\\Model\\.$#', |
|
511 | + 'count' => 1, |
|
512 | + 'path' => __DIR__ . '/src/Validation/Rules/Unique.php', |
|
513 | 513 | ]; |
514 | 514 | $ignoreErrors[] = [ |
515 | - 'message' => '#^Parameter \\$entity of method BlitzPHP\\\\Validation\\\\Rules\\\\Unique\\:\\:ignoreModel\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#', |
|
516 | - 'count' => 1, |
|
517 | - 'path' => __DIR__ . '/src/Validation/Rules/Unique.php', |
|
515 | + 'message' => '#^Parameter \\$entity of method BlitzPHP\\\\Validation\\\\Rules\\\\Unique\\:\\:ignoreModel\\(\\) has invalid type BlitzPHP\\\\Wolke\\\\Model\\.$#', |
|
516 | + 'count' => 1, |
|
517 | + 'path' => __DIR__ . '/src/Validation/Rules/Unique.php', |
|
518 | 518 | ]; |
519 | 519 | $ignoreErrors[] = [ |
520 | - 'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
521 | - 'count' => 1, |
|
522 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
520 | + 'message' => '#^Call to method directive\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
521 | + 'count' => 1, |
|
522 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
523 | 523 | ]; |
524 | 524 | $ignoreErrors[] = [ |
525 | - 'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
526 | - 'count' => 1, |
|
527 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
525 | + 'message' => '#^Call to method if\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
526 | + 'count' => 1, |
|
527 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
528 | 528 | ]; |
529 | 529 | $ignoreErrors[] = [ |
530 | - 'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
531 | - 'count' => 1, |
|
532 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
530 | + 'message' => '#^Call to method render\\(\\) on an unknown class Jenssegers\\\\Blade\\\\Blade\\.$#', |
|
531 | + 'count' => 1, |
|
532 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
533 | 533 | ]; |
534 | 534 | $ignoreErrors[] = [ |
535 | - 'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#', |
|
536 | - 'count' => 1, |
|
537 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
535 | + 'message' => '#^Instantiated class Jenssegers\\\\Blade\\\\Blade not found\\.$#', |
|
536 | + 'count' => 1, |
|
537 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
538 | 538 | ]; |
539 | 539 | $ignoreErrors[] = [ |
540 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#', |
|
541 | - 'count' => 1, |
|
542 | - 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
540 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\BladeAdapter\\:\\:\\$engine has unknown class Jenssegers\\\\Blade\\\\Blade as its type\\.$#', |
|
541 | + 'count' => 1, |
|
542 | + 'path' => __DIR__ . '/src/View/Adapters/BladeAdapter.php', |
|
543 | 543 | ]; |
544 | 544 | $ignoreErrors[] = [ |
545 | - 'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
546 | - 'count' => 1, |
|
547 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
545 | + 'message' => '#^Call to method renderToString\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
546 | + 'count' => 1, |
|
547 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
548 | 548 | ]; |
549 | 549 | $ignoreErrors[] = [ |
550 | - 'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
551 | - 'count' => 1, |
|
552 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
550 | + 'message' => '#^Call to method setAutoRefresh\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
551 | + 'count' => 1, |
|
552 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
553 | 553 | ]; |
554 | 554 | $ignoreErrors[] = [ |
555 | - 'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
556 | - 'count' => 1, |
|
557 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
555 | + 'message' => '#^Call to method setLoader\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
556 | + 'count' => 1, |
|
557 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
558 | 558 | ]; |
559 | 559 | $ignoreErrors[] = [ |
560 | - 'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
561 | - 'count' => 1, |
|
562 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
560 | + 'message' => '#^Call to method setTempDirectory\\(\\) on an unknown class Latte\\\\Engine\\.$#', |
|
561 | + 'count' => 1, |
|
562 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
563 | 563 | ]; |
564 | 564 | $ignoreErrors[] = [ |
565 | - 'message' => '#^Class Latte\\\\Engine not found\\.$#', |
|
566 | - 'count' => 1, |
|
567 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
565 | + 'message' => '#^Class Latte\\\\Engine not found\\.$#', |
|
566 | + 'count' => 1, |
|
567 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
568 | 568 | ]; |
569 | 569 | $ignoreErrors[] = [ |
570 | - 'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#', |
|
571 | - 'count' => 1, |
|
572 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
570 | + 'message' => '#^Instantiated class Latte\\\\Engine not found\\.$#', |
|
571 | + 'count' => 1, |
|
572 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
573 | 573 | ]; |
574 | 574 | $ignoreErrors[] = [ |
575 | - 'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#', |
|
576 | - 'count' => 1, |
|
577 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
575 | + 'message' => '#^Instantiated class Latte\\\\Loaders\\\\FileLoader not found\\.$#', |
|
576 | + 'count' => 1, |
|
577 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
578 | 578 | ]; |
579 | 579 | $ignoreErrors[] = [ |
580 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#', |
|
581 | - 'count' => 1, |
|
582 | - 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
580 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\LatteAdapter\\:\\:\\$latte has unknown class Latte\\\\Engine as its type\\.$#', |
|
581 | + 'count' => 1, |
|
582 | + 'path' => __DIR__ . '/src/View/Adapters/LatteAdapter.php', |
|
583 | 583 | ]; |
584 | 584 | $ignoreErrors[] = [ |
585 | - 'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
586 | - 'count' => 2, |
|
587 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
585 | + 'message' => '#^Call to method addFolder\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
586 | + 'count' => 2, |
|
587 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
588 | 588 | ]; |
589 | 589 | $ignoreErrors[] = [ |
590 | - 'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
591 | - 'count' => 1, |
|
592 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
590 | + 'message' => '#^Call to method loadExtension\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
591 | + 'count' => 1, |
|
592 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
593 | 593 | ]; |
594 | 594 | $ignoreErrors[] = [ |
595 | - 'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
596 | - 'count' => 1, |
|
597 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
595 | + 'message' => '#^Call to method registerFunction\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
596 | + 'count' => 1, |
|
597 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
598 | 598 | ]; |
599 | 599 | $ignoreErrors[] = [ |
600 | - 'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
601 | - 'count' => 1, |
|
602 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
600 | + 'message' => '#^Call to method render\\(\\) on an unknown class League\\\\Plates\\\\Engine\\.$#', |
|
601 | + 'count' => 1, |
|
602 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
603 | 603 | ]; |
604 | 604 | $ignoreErrors[] = [ |
605 | - 'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#', |
|
606 | - 'count' => 1, |
|
607 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
605 | + 'message' => '#^Class League\\\\Plates\\\\Engine not found\\.$#', |
|
606 | + 'count' => 1, |
|
607 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
608 | 608 | ]; |
609 | 609 | $ignoreErrors[] = [ |
610 | - 'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#', |
|
611 | - 'count' => 1, |
|
612 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
610 | + 'message' => '#^Instantiated class League\\\\Plates\\\\Engine not found\\.$#', |
|
611 | + 'count' => 1, |
|
612 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
613 | 613 | ]; |
614 | 614 | $ignoreErrors[] = [ |
615 | - 'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#', |
|
616 | - 'count' => 1, |
|
617 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
615 | + 'message' => '#^Instantiated class League\\\\Plates\\\\Extension\\\\Asset not found\\.$#', |
|
616 | + 'count' => 1, |
|
617 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
618 | 618 | ]; |
619 | 619 | $ignoreErrors[] = [ |
620 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#', |
|
621 | - 'count' => 1, |
|
622 | - 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
620 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\PlatesAdapter\\:\\:\\$engine has unknown class League\\\\Plates\\\\Engine as its type\\.$#', |
|
621 | + 'count' => 1, |
|
622 | + 'path' => __DIR__ . '/src/View/Adapters/PlatesAdapter.php', |
|
623 | 623 | ]; |
624 | 624 | $ignoreErrors[] = [ |
625 | - 'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#', |
|
626 | - 'count' => 1, |
|
627 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
625 | + 'message' => '#^Access to constant CACHING_LIFETIME_SAVED on an unknown class Smarty\\.$#', |
|
626 | + 'count' => 1, |
|
627 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
628 | 628 | ]; |
629 | 629 | $ignoreErrors[] = [ |
630 | - 'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#', |
|
631 | - 'count' => 1, |
|
632 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
630 | + 'message' => '#^Access to constant CACHING_OFF on an unknown class Smarty\\.$#', |
|
631 | + 'count' => 1, |
|
632 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
633 | 633 | ]; |
634 | 634 | $ignoreErrors[] = [ |
635 | - 'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#', |
|
636 | - 'count' => 1, |
|
637 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
635 | + 'message' => '#^Call to method addPluginsDir\\(\\) on an unknown class Smarty\\.$#', |
|
636 | + 'count' => 1, |
|
637 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
638 | 638 | ]; |
639 | 639 | $ignoreErrors[] = [ |
640 | - 'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#', |
|
641 | - 'count' => 1, |
|
642 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
640 | + 'message' => '#^Call to method assign\\(\\) on an unknown class Smarty\\.$#', |
|
641 | + 'count' => 1, |
|
642 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
643 | 643 | ]; |
644 | 644 | $ignoreErrors[] = [ |
645 | - 'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#', |
|
646 | - 'count' => 1, |
|
647 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
645 | + 'message' => '#^Call to method fetch\\(\\) on an unknown class Smarty\\.$#', |
|
646 | + 'count' => 1, |
|
647 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
648 | 648 | ]; |
649 | 649 | $ignoreErrors[] = [ |
650 | - 'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#', |
|
651 | - 'count' => 1, |
|
652 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
650 | + 'message' => '#^Call to method setCacheLifetime\\(\\) on an unknown class Smarty\\.$#', |
|
651 | + 'count' => 1, |
|
652 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
653 | 653 | ]; |
654 | 654 | $ignoreErrors[] = [ |
655 | - 'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#', |
|
656 | - 'count' => 1, |
|
657 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
655 | + 'message' => '#^Call to method setCaching\\(\\) on an unknown class Smarty\\.$#', |
|
656 | + 'count' => 1, |
|
657 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
658 | 658 | ]; |
659 | 659 | $ignoreErrors[] = [ |
660 | - 'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#', |
|
661 | - 'count' => 1, |
|
662 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
660 | + 'message' => '#^Call to method setCompileId\\(\\) on an unknown class Smarty\\.$#', |
|
661 | + 'count' => 1, |
|
662 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
663 | 663 | ]; |
664 | 664 | $ignoreErrors[] = [ |
665 | - 'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#', |
|
666 | - 'count' => 1, |
|
667 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
665 | + 'message' => '#^Call to method setTemplateDir\\(\\) on an unknown class Smarty\\.$#', |
|
666 | + 'count' => 1, |
|
667 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
668 | 668 | ]; |
669 | 669 | $ignoreErrors[] = [ |
670 | - 'message' => '#^Class Smarty not found\\.$#', |
|
671 | - 'count' => 1, |
|
672 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
670 | + 'message' => '#^Class Smarty not found\\.$#', |
|
671 | + 'count' => 1, |
|
672 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
673 | 673 | ]; |
674 | 674 | $ignoreErrors[] = [ |
675 | - 'message' => '#^Instantiated class Smarty not found\\.$#', |
|
676 | - 'count' => 1, |
|
677 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
675 | + 'message' => '#^Instantiated class Smarty not found\\.$#', |
|
676 | + 'count' => 1, |
|
677 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
678 | 678 | ]; |
679 | 679 | $ignoreErrors[] = [ |
680 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#', |
|
681 | - 'count' => 1, |
|
682 | - 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
680 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\SmartyAdapter\\:\\:\\$engine has unknown class Smarty as its type\\.$#', |
|
681 | + 'count' => 1, |
|
682 | + 'path' => __DIR__ . '/src/View/Adapters/SmartyAdapter.php', |
|
683 | 683 | ]; |
684 | 684 | $ignoreErrors[] = [ |
685 | - 'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
686 | - 'count' => 1, |
|
687 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
685 | + 'message' => '#^Call to method addFilter\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
686 | + 'count' => 1, |
|
687 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
688 | 688 | ]; |
689 | 689 | $ignoreErrors[] = [ |
690 | - 'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
691 | - 'count' => 1, |
|
692 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
690 | + 'message' => '#^Call to method addFunction\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
691 | + 'count' => 1, |
|
692 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
693 | 693 | ]; |
694 | 694 | $ignoreErrors[] = [ |
695 | - 'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
696 | - 'count' => 1, |
|
697 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
695 | + 'message' => '#^Call to method addGlobal\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
696 | + 'count' => 1, |
|
697 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
698 | 698 | ]; |
699 | 699 | $ignoreErrors[] = [ |
700 | - 'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
701 | - 'count' => 1, |
|
702 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
700 | + 'message' => '#^Call to method disableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
701 | + 'count' => 1, |
|
702 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
703 | 703 | ]; |
704 | 704 | $ignoreErrors[] = [ |
705 | - 'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
706 | - 'count' => 1, |
|
707 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
705 | + 'message' => '#^Call to method disableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
706 | + 'count' => 1, |
|
707 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
708 | 708 | ]; |
709 | 709 | $ignoreErrors[] = [ |
710 | - 'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
711 | - 'count' => 1, |
|
712 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
710 | + 'message' => '#^Call to method disableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
711 | + 'count' => 1, |
|
712 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
713 | 713 | ]; |
714 | 714 | $ignoreErrors[] = [ |
715 | - 'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
716 | - 'count' => 1, |
|
717 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
715 | + 'message' => '#^Call to method enableAutoReload\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
716 | + 'count' => 1, |
|
717 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
718 | 718 | ]; |
719 | 719 | $ignoreErrors[] = [ |
720 | - 'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
721 | - 'count' => 1, |
|
722 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
720 | + 'message' => '#^Call to method enableDebug\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
721 | + 'count' => 1, |
|
722 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
723 | 723 | ]; |
724 | 724 | $ignoreErrors[] = [ |
725 | - 'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
726 | - 'count' => 1, |
|
727 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
725 | + 'message' => '#^Call to method enableStrictVariables\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
726 | + 'count' => 1, |
|
727 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
728 | 728 | ]; |
729 | 729 | $ignoreErrors[] = [ |
730 | - 'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
731 | - 'count' => 1, |
|
732 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
730 | + 'message' => '#^Call to method render\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
731 | + 'count' => 1, |
|
732 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
733 | 733 | ]; |
734 | 734 | $ignoreErrors[] = [ |
735 | - 'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
736 | - 'count' => 1, |
|
737 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
735 | + 'message' => '#^Call to method setCache\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
736 | + 'count' => 1, |
|
737 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
738 | 738 | ]; |
739 | 739 | $ignoreErrors[] = [ |
740 | - 'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
741 | - 'count' => 1, |
|
742 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
740 | + 'message' => '#^Call to method setCharset\\(\\) on an unknown class Twig\\\\Environment\\.$#', |
|
741 | + 'count' => 1, |
|
742 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
743 | 743 | ]; |
744 | 744 | $ignoreErrors[] = [ |
745 | - 'message' => '#^Class Twig\\\\Environment not found\\.$#', |
|
746 | - 'count' => 1, |
|
747 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
745 | + 'message' => '#^Class Twig\\\\Environment not found\\.$#', |
|
746 | + 'count' => 1, |
|
747 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
748 | 748 | ]; |
749 | 749 | $ignoreErrors[] = [ |
750 | - 'message' => '#^Class Twig\\\\TwigFilter not found\\.$#', |
|
751 | - 'count' => 1, |
|
752 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
750 | + 'message' => '#^Class Twig\\\\TwigFilter not found\\.$#', |
|
751 | + 'count' => 1, |
|
752 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
753 | 753 | ]; |
754 | 754 | $ignoreErrors[] = [ |
755 | - 'message' => '#^Class Twig\\\\TwigFunction not found\\.$#', |
|
756 | - 'count' => 1, |
|
757 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
755 | + 'message' => '#^Class Twig\\\\TwigFunction not found\\.$#', |
|
756 | + 'count' => 1, |
|
757 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
758 | 758 | ]; |
759 | 759 | $ignoreErrors[] = [ |
760 | - 'message' => '#^Instantiated class Twig\\\\Environment not found\\.$#', |
|
761 | - 'count' => 1, |
|
762 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
760 | + 'message' => '#^Instantiated class Twig\\\\Environment not found\\.$#', |
|
761 | + 'count' => 1, |
|
762 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
763 | 763 | ]; |
764 | 764 | $ignoreErrors[] = [ |
765 | - 'message' => '#^Instantiated class Twig\\\\Loader\\\\FilesystemLoader not found\\.$#', |
|
766 | - 'count' => 1, |
|
767 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
765 | + 'message' => '#^Instantiated class Twig\\\\Loader\\\\FilesystemLoader not found\\.$#', |
|
766 | + 'count' => 1, |
|
767 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
768 | 768 | ]; |
769 | 769 | $ignoreErrors[] = [ |
770 | - 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$cache_id$#', |
|
771 | - 'count' => 1, |
|
772 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
770 | + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$cache_id$#', |
|
771 | + 'count' => 1, |
|
772 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
773 | 773 | ]; |
774 | 774 | $ignoreErrors[] = [ |
775 | - 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$compile_id$#', |
|
776 | - 'count' => 1, |
|
777 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
775 | + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$compile_id$#', |
|
776 | + 'count' => 1, |
|
777 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
778 | 778 | ]; |
779 | 779 | $ignoreErrors[] = [ |
780 | - 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$parent$#', |
|
781 | - 'count' => 1, |
|
782 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
780 | + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$parent$#', |
|
781 | + 'count' => 1, |
|
782 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
783 | 783 | ]; |
784 | 784 | $ignoreErrors[] = [ |
785 | - 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$template$#', |
|
786 | - 'count' => 1, |
|
787 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
785 | + 'message' => '#^PHPDoc tag @param references unknown parameter\\: \\$template$#', |
|
786 | + 'count' => 1, |
|
787 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
788 | 788 | ]; |
789 | 789 | $ignoreErrors[] = [ |
790 | - 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\TwigAdapter\\:\\:\\$engine has unknown class Twig\\\\Environment as its type\\.$#', |
|
791 | - 'count' => 1, |
|
792 | - 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
790 | + 'message' => '#^Property BlitzPHP\\\\View\\\\Adapters\\\\TwigAdapter\\:\\:\\$engine has unknown class Twig\\\\Environment as its type\\.$#', |
|
791 | + 'count' => 1, |
|
792 | + 'path' => __DIR__ . '/src/View/Adapters/TwigAdapter.php', |
|
793 | 793 | ]; |
794 | 794 | |
795 | 795 | return ['parameters' => ['ignoreErrors' => $ignoreErrors]]; |