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.
1 parent bfd952c commit 5af5598Copy full SHA for 5af5598
psalm_autoload.php
@@ -6,6 +6,7 @@
6
7
$helperDirs = [
8
'system/Helpers',
9
+ 'tests/_support',
10
];
11
12
foreach ($helperDirs as $dir) {
@@ -23,4 +24,23 @@
23
24
}
25
26
27
+$dirs = [
28
29
+];
30
+
31
+foreach ($dirs as $dir) {
32
+ $dir = __DIR__ . '/' . $dir;
33
+ if (! is_dir($dir)) {
34
+ continue;
35
+ }
36
37
+ chdir($dir);
38
39
+ foreach (glob('*.php') as $filename) {
40
+ $filePath = realpath($dir . '/' . $filename);
41
42
+ require_once $filePath;
43
44
+}
45
46
chdir(__DIR__);
0 commit comments