Skip to content

Commit

Permalink
Improve the Nova\View\Compilers\TemplateCompiler
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyCyborg committed Mar 14, 2017
1 parent 06e6e7e commit 3f90be0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Application extends Container implements HttpKernelInterface, TerminableIn
*
* @var string
*/
const VERSION = '3.77.13';
const VERSION = '3.77.14';

/**
* Indicates if the application has "booted".
Expand Down
4 changes: 2 additions & 2 deletions src/View/Compilers/TemplateCompiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -700,12 +700,12 @@ protected function compileInclude($expression)
}

/**
* Compile the fragment statements into valid PHP.
* Compile the partial statements into valid PHP.
*
* @param string $expression
* @return string
*/
protected function compileFragment($expression)
protected function compilePartial($expression)
{
$expression = $this->stripParentheses($expression);

Expand Down

0 comments on commit 3f90be0

Please sign in to comment.