CodeIgniter4/psalm_autoload.php

48 lines
805 B
PHP
Raw Normal View History

2022-08-29 01:10:01 +00:00
<?php
declare(strict_types=1);
require __DIR__ . '/system/Test/bootstrap.php';
$helperDirs = [
'system/Helpers',
];
foreach ($helperDirs as $dir) {
$dir = __DIR__ . '/' . $dir;
if (! is_dir($dir)) {
continue;
}
chdir($dir);
foreach (glob('*_helper.php') as $filename) {
$filePath = realpath($dir . '/' . $filename);
require_once $filePath;
}
}
2023-06-15 18:44:37 +09:00
$dirs = [
'tests/_support/Controllers',
'tests/_support/_controller',
'tests/system/Config/fixtures',
2023-06-15 18:44:37 +09:00
];
foreach ($dirs as $dir) {
$dir = __DIR__ . '/' . $dir;
if (! is_dir($dir)) {
continue;
}
chdir($dir);
foreach (glob('*.php') as $filename) {
$filePath = realpath($dir . '/' . $filename);
require_once $filePath;
}
}
chdir(__DIR__);