Created
November 27, 2019 05:21
-
-
Save DarkGhostHunter/d62503adae8f5d4c5b4f4a822119f526 to your computer and use it in GitHub Desktop.
A sample preload file
This file contains hidden or 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
<?php | |
// Get the list of files of the main directory and remove the dots | |
$files = array_diff(scandir(__DIR__ . '/src/'), array('..', '.')); | |
// Add the helpers file | |
$files[] = 'helpers/helpers.php'; | |
return $files; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment