From 85c1f0e756bdfcb4ea19bc617011b69d94db3cbf Mon Sep 17 00:00:00 2001 From: phalcon Date: Fri, 22 Aug 2014 13:18:56 -0500 Subject: [PATCH] Fixing PSR2 issue, updating version --- Library/Compiler.php | 2 +- Library/Statements/Let/ExportSymbolString.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Compiler.php b/Library/Compiler.php index c9b720da8f..6d10d2cec0 100755 --- a/Library/Compiler.php +++ b/Library/Compiler.php @@ -29,7 +29,7 @@ */ class Compiler { - const VERSION = '0.4.5a'; + const VERSION = '0.4.6a'; /** * @var CompilerFile[] diff --git a/Library/Statements/Let/ExportSymbolString.php b/Library/Statements/Let/ExportSymbolString.php index 306c3d4bb2..c25c49e5e8 100644 --- a/Library/Statements/Let/ExportSymbolString.php +++ b/Library/Statements/Let/ExportSymbolString.php @@ -46,7 +46,7 @@ class ExportSymbolString * @param CompilationContext $compilationContext, * @param array $statement */ - public function assign($variable, ZephirVariable $symbolVariable = null, CompiledExpression $resolvedExpr, CompilationContext $compilationContext, $statement) + public function assign($variable, ZephirVariable $symbolVariable = null, CompiledExpression $resolvedExpr = null, CompilationContext $compilationContext = null, $statement = null) { $codePrinter = $compilationContext->codePrinter;