Passed
Push — master ( 676938...54b931 )
by Observer
01:29
created
engine/extensions/VLF/bin/interpreter.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 
100 100
                         try
101 101
                         {
102
-							if (strpos ($propertyName, '->') !== false && self::$allow_multimethods_calls)
102
+                            if (strpos ($propertyName, '->') !== false && self::$allow_multimethods_calls)
103 103
                                 eval ('namespace VoidEngine; '. $preset .' _c('. self::$objects[$name]->selector .')->'. $propertyName .' = '. $propertyValue .';');
104 104
                             
105 105
                             else self::$objects[$name]->$propertyName = eval ("namespace VoidEngine; $preset return $propertyValue;");
@@ -259,9 +259,9 @@  discard block
 block discarded – undo
259 259
         return $line;
260 260
     }
261 261
 	
262
-	public static function clear (): void
263
-	{
264
-		self::$objects = [];
265
-		self::$imported_styles = [];
266
-	}
262
+    public static function clear (): void
263
+    {
264
+        self::$objects = [];
265
+        self::$imported_styles = [];
266
+    }
267 267
 }
Please login to merge, or discard this patch.
engine/extensions/VLF/bin/VST/Interpreter.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,9 +61,9 @@
 block discarded – undo
61 61
         return [self::$styles, self::$default_styles];
62 62
     }
63 63
 	
64
-	public static function clear (): void
65
-	{
66
-		self::$styles = [];
67
-		self::$default_styles = [];
68
-	}
64
+    public static function clear (): void
65
+    {
66
+        self::$styles = [];
67
+        self::$default_styles = [];
68
+    }
69 69
 }
Please login to merge, or discard this patch.