<?php
namespace Illuminate\View\Compilers;
interface CompilerInterface
{// a interface
/**
* Get the path to the compiled version of a view.
*
* @param string $path
* @return string
*/
public function getCompiledPath($path);// a function
/**
* Determine if the given view is expired.
*
* @param string $path
* @return bool
*/
public function isExpired($path);// a is Expired
/**
* Compile the view at the given path.
*
* @param string $path
* @return void
*/
public function compile($path);//compile
}
[李景山php]每天laravel-20161101|CompilerInterface.php
原创
©著作权归作者所有:来自51CTO博客作者lijingshan34的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章