Completed
Branch master (c3f4e5)
by Marko
02:20
created
src/Core/Assets.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,4 +129,4 @@
 block discarded – undo
129 129
         $this->z = $z ?? 0;
130 130
     }
131 131
 }
132
- 
133 132
\ No newline at end of file
133
+    
134 134
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 {
28 28
 
29 29
     public function __construct()
30
-    {}
30
+    {
31
+}
31 32
 }
32 33
  
33 34
\ No newline at end of file
Please login to merge, or discard this patch.
src/Core/Shaders/Standard.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,8 +83,8 @@
 block discarded – undo
83 83
     public function removeDefaultDOMAttributes()
84 84
     {
85 85
         $defaults = get_class_vars(get_class($this));
86
-        foreach (get_object_vars($this) as $name => $value) {
87
-            if (empty($value) || (array_key_exists($name, $defaults) && $value === $defaults[$name]))
86
+        foreach(get_object_vars($this) as $name => $value) {
87
+            if(empty($value) || (array_key_exists($name, $defaults) && $value === $defaults[$name]))
88 88
                 unset($this->$name);
89 89
         }
90 90
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,8 +65,9 @@
 block discarded – undo
65 65
     {
66 66
         $defaults = get_class_vars(get_class($this));
67 67
         foreach (get_object_vars($this) as $name => $value) {
68
-            if (empty($value) || (array_key_exists($name, $defaults) && $value === $defaults[$name]))
69
-                unset($this->$name);
68
+            if (empty($value) || (array_key_exists($name, $defaults) && $value === $defaults[$name])) {
69
+                            unset($this->$name);
70
+            }
70 71
         }
71 72
     }
72 73
 }
Please login to merge, or discard this patch.
src/Core/Mixin.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,5 +27,6 @@
 block discarded – undo
27 27
 {
28 28
 
29 29
     public function __construct()
30
-    {}
30
+    {
31
+}
31 32
 }
Please login to merge, or discard this patch.
src/Core/Helpers/MetaTags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      * @param \DOMDocument $aframe_dom            
72 72
      * @param \DOMElement $head            
73 73
      */
74
-    public function DOMAppendTags(\DOMDocument &$aframe_dom, \DOMElement &$head)
74
+    public function DOMAppendTags(\DOMDocument & $aframe_dom, \DOMElement & $head)
75 75
     {
76 76
         /* meta charset */
77 77
         $charset = $aframe_dom->createElement('meta');
Please login to merge, or discard this patch.
src/Core/Animation.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,5 +27,6 @@
 block discarded – undo
27 27
 {
28 28
 
29 29
     public function __construct()
30
-    {}
30
+    {
31
+}
31 32
 }
Please login to merge, or discard this patch.
src/Core/Exceptions/BadShaderCallException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,4 +129,4 @@
 block discarded – undo
129 129
         $this->z = $z ?? 0;
130 130
     }
131 131
 }
132
- 
133 132
\ No newline at end of file
133
+    
134 134
\ No newline at end of file
Please login to merge, or discard this patch.
src/Aframe.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,4 +129,4 @@
 block discarded – undo
129 129
         $this->z = $z ?? 0;
130 130
     }
131 131
 }
132
- 
133 132
\ No newline at end of file
133
+    
134 134
\ No newline at end of file
Please login to merge, or discard this patch.
src/Extras/Primitives/Box.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,4 +129,4 @@
 block discarded – undo
129 129
         $this->z = $z ?? 0;
130 130
     }
131 131
 }
132
- 
133 132
\ No newline at end of file
133
+    
134 134
\ No newline at end of file
Please login to merge, or discard this patch.
src/Extras/Primitives/Sky.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,4 +129,4 @@
 block discarded – undo
129 129
         $this->z = $z ?? 0;
130 130
     }
131 131
 }
132
- 
133 132
\ No newline at end of file
133
+    
134 134
\ No newline at end of file
Please login to merge, or discard this patch.