Airship\Engine\Gears::sandboxRequire PHP 메소드

sandboxRequire() 보호된 메소드

Load a file in a way that doesn't allow access to the parent method's internal functions
protected sandboxRequire ( string $file ) : boolean
$file string
리턴 boolean
    protected function sandboxRequire(string $file) : bool
    {
        return (require $file) === 1;
    }