Completed
Push — master ( 982afe...a8b76e )
by Kirill
04:20 queued 02:12
created
src/Compiler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public function saveTo(string $path): void
82 82
     {
83
-        $pathName = $path . '/' . $this->class . '.php';
83
+        $pathName = $path.'/'.$this->class.'.php';
84 84
 
85 85
         if (\is_file($pathName)) {
86 86
             \unlink($pathName);
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         \ob_start();
99 99
 
100 100
         try {
101
-            require __DIR__ . '/../resources/templates/parser.tpl.php';
101
+            require __DIR__.'/../resources/templates/parser.tpl.php';
102 102
             return \ob_get_contents();
103 103
         } catch (\Throwable $e) {
104 104
             throw $e;
Please login to merge, or discard this patch.