added docblock to blade function.
This commit is contained in:
parent
3ba6342cf5
commit
d558387b85
|
@ -104,6 +104,12 @@ public static function compile_string($value, $view = null)
|
||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rewrites Blade "@layout" expressions into valid PHP.
|
||||||
|
*
|
||||||
|
* @param string $value
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
protected static function compile_layouts($value)
|
protected static function compile_layouts($value)
|
||||||
{
|
{
|
||||||
// If the Blade template is not using "layouts", we'll just return it
|
// If the Blade template is not using "layouts", we'll just return it
|
||||||
|
|
Loading…
Reference in New Issue