Created
January 29, 2022 03:01
-
-
Save coisa/cd490a64549d0c1df0374aa325631988 to your computer and use it in GitHub Desktop.
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 | |
| use CoiSA\Facade; | |
| interface PhpIncludeFacadeInterface | |
| { | |
| /** | |
| * Facade for "include" & "include_once" functions | |
| */ | |
| public function includePhpFile($filepath, bool $once = true); | |
| } |
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 | |
| use CoiSA\Facade; | |
| interface PhpRequireFacadeInterface | |
| { | |
| /** | |
| * Facade for "require" & "require_once" functions | |
| */ | |
| public function requirePhpFile($filepath, bool $once = true); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment