Skip to content

Instantly share code, notes, and snippets.

@coisa
Created January 29, 2022 03:01
Show Gist options
  • Select an option

  • Save coisa/cd490a64549d0c1df0374aa325631988 to your computer and use it in GitHub Desktop.

Select an option

Save coisa/cd490a64549d0c1df0374aa325631988 to your computer and use it in GitHub Desktop.
<?php
use CoiSA\Facade;
interface PhpIncludeFacadeInterface
{
/**
* Facade for "include" & "include_once" functions
*/
public function includePhpFile($filepath, bool $once = true);
}
<?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