Passed
Branch master (18abc7)
by Mehmet
01:51
created
src/RedisGraph/Node.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     {
73 73
         $nodeString = '(' . $this->getAlias();
74 74
         if ($this->alias !== null) {
75
-          //  $nodeString .= $this->alias;
75
+            //  $nodeString .= $this->alias;
76 76
         }
77 77
         if ($this->label !== null) {
78 78
             $nodeString .= ':' . $this->label . ' ';
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
     private function getProps(iterable $properties): string
88 88
     {
89
-         $props = '';
89
+            $props = '';
90 90
         foreach ($properties as $propKey => $propValue) {
91 91
             if ($props !== '') {
92 92
                 $props .= ', ';
Please login to merge, or discard this patch.