-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ccfc3d
commit d645d9e
Showing
34 changed files
with
540 additions
and
500 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,9 @@ | ||
<?php | ||
|
||
$paths = [ | ||
'../../../vendor/autoload.php', | ||
__DIR__. '/vendor/autoload.php', | ||
__DIR__ . '/../vendor/autoload.php', | ||
__DIR__. '/../../vendor/autoload.php', | ||
dirname(__DIR__, 4) . '/storage/dev-autoload.php', | ||
dirname(__DIR__, 3) . '/autoload.php', | ||
dirname(__DIR__) . '/vendor/autoload.php', | ||
]; | ||
|
||
|
||
foreach ($paths as $vendor) { | ||
if (file_exists($vendor)) { | ||
return require $vendor; | ||
} | ||
} | ||
return require current(array_filter($paths, 'file_exists')); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.