<?phpnamespaceIlluminate\View\Compilers;interfaceCompilerInterface{/** * Get the path to the compiled version of a view. * * @param string $path * @return string */publicfunctiongetCompiledPath($path);/** * Determine if the given view is expired. * * @param string $path * @return bool */publicfunctionisExpired($path);/** * Compile the view at the given path. * * @param string $path * @return void */publicfunctioncompile($path);}