Skip to content

Commit 244dad6

Browse files
authored
Merge pull request #8107 from paulbalandan/phpstan-codeigniter-controller
docs: add Closure signature for CodeIgniter::$controller
2 parents 61e112a + b421974 commit 244dad6

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

phpstan-baseline.php

-5
Original file line numberDiff line numberDiff line change
@@ -186,11 +186,6 @@
186186
'count' => 6,
187187
'path' => __DIR__ . '/system/CodeIgniter.php',
188188
];
189-
$ignoreErrors[] = [
190-
'message' => '#^Property CodeIgniter\\\\CodeIgniter\\:\\:\\$controller type has no signature specified for Closure\\.$#',
191-
'count' => 1,
192-
'path' => __DIR__ . '/system/CodeIgniter.php',
193-
];
194189
$ignoreErrors[] = [
195190
'message' => '#^Construct empty\\(\\) is not allowed\\. Use more strict comparison\\.$#',
196191
'count' => 1,

system/CodeIgniter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class CodeIgniter
108108
/**
109109
* Controller to use.
110110
*
111-
* @var Closure|string
111+
* @var (Closure(mixed...): ResponseInterface|string)|string
112112
*/
113113
protected $controller;
114114

0 commit comments

Comments
 (0)