PHP Classes

File: phpstan.includes.php

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   Luminova Framework   phpstan.includes.php   Download  
File: phpstan.includes.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Luminova Framework
PHP Luminova framework: simple, powerful MVC/HMVC.
Author: By
Last change:
Date: 3 months ago
Size: 675 bytes
 

Contents

Class file image Download
<?php
/**
 * Luminova Framework
 *
 * @package Luminova
 * @author Ujah Chigozie Peter
 * @copyright (c) Nanoblock Technology Ltd
 * @license See LICENSE file
 */
declare(strict_types = 1);

$ignoreErrors = [];
$ignoreErrors[] = [
   
'message' => '#^Parameter \\#1 \\$node \\(PhpParser\\\\Node\\\\Stmt\\) of method Luminova\\\\Debugger\\\\PHPStanRules\\:\\:processNode\\(\\) should be contravariant with parameter \\$node \\(PhpParser\\\\Node\\) of method PHPStan\\\\Rules\\\\Rule\\<PhpParser\\\\Node\\>\\:\\:processNode\\(\\)$#',
   
'count' => 1,
   
'path' => __DIR__ . '/system/Debugger/PHPStanRules.php',
];

return [
   
'parameters' => [
       
'ignoreErrors' => $ignoreErrors
   
]
];