Skip to content

Commit

Permalink
PSR2 fixes, update version
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgutierrez committed Nov 3, 2014
1 parent 92250ef commit 0504048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Library/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
class Compiler
{
const VERSION = '0.5.7a';
const VERSION = '0.5.8a';

/**
* @var CompilerFile[]
Expand Down Expand Up @@ -1717,6 +1717,6 @@ public static function getShortPath($path)
*/
public static function getShortUserPath($path)
{
return str_replace('\\', '/', str_replace(getcwd() . DIRECTORY_SEPARATOR, '', $path));
return str_replace('\\', '/', str_replace(getcwd() . DIRECTORY_SEPARATOR, '', $path));
}
}

0 comments on commit 0504048

Please sign in to comment.