mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
8 lines
177 B
PHP
8 lines
177 B
PHP
|
<?php
|
||
|
|
||
|
foreach ([__DIR__ . '/../../../autoload.php', __DIR__ . '/../vendor/autoload.php'] as $file) {
|
||
|
if (file_exists($file)) {
|
||
|
require $file;
|
||
|
break;
|
||
|
}
|
||
|
}
|