We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d827fc9 + 8e5c50e commit eea5087Copy full SHA for eea5087
psalm_autoload.php
@@ -23,4 +23,23 @@
23
}
24
25
26
+$dirs = [
27
+ 'tests/_support/Controllers',
28
+];
29
+
30
+foreach ($dirs as $dir) {
31
+ $dir = __DIR__ . '/' . $dir;
32
+ if (! is_dir($dir)) {
33
+ continue;
34
+ }
35
36
+ chdir($dir);
37
38
+ foreach (glob('*.php') as $filename) {
39
+ $filePath = realpath($dir . '/' . $filename);
40
41
+ require_once $filePath;
42
43
+}
44
45
chdir(__DIR__);
0 commit comments