Argument 1 passed to OPovo\Bootstrap::run() must be of the type array, null given, called in /mnt/home/opovo/public_html/vendor/opovo/system/Bootstrap.php on line 162

/mnt/home/opovo/public_html/vendor/opovo/system/Bootstrap.php 22

15 
16     public function __construct(string $namespacestring $methods)
17     {
18         $this->namespace str_replace('/''\\''App\Controller\\' $namespace);
19         $this->methods explode(';'$methods);
20     }
21 
22     public function run(array $params = [])
23     {
24         $this->verifyClass($this->namespace);
25 
26         foreach ($this->methods as $key => $value) {
27             $this->verifyMethod($value);
28         }
29