Security update for Core, with self-updated composer
[yaffs-website] / vendor / psy / psysh / src / Psy / Sudo / SudoVisitor.php
index 0bd77e9a4822f3aeb281bae4693d2446ffb2585c..77ed7e0265caad5ad7ac2285d2f94d180c63e26b 100644 (file)
@@ -55,7 +55,7 @@ class SudoVisitor extends NodeVisitorAbstract
             return $this->prepareCall(self::PROPERTY_FETCH, $args);
         } elseif ($node instanceof Assign && $node->var instanceof PropertyFetch) {
             $target = $node->var;
-            $args = array(
+            $args   = array(
                 $target->var,
                 is_string($target->name) ? new String_($target->name) : $target->name,
                 $node->expr,
@@ -71,7 +71,7 @@ class SudoVisitor extends NodeVisitorAbstract
             return new StaticCall(new FullyQualifiedName(self::SUDO_CLASS), self::METHOD_CALL, $args);
         } elseif ($node instanceof StaticPropertyFetch) {
             $class = $node->class instanceof Name ? (string) $node->class : $node->class;
-            $args = array(
+            $args  = array(
                 is_string($class) ? new String_($class) : $class,
                 is_string($node->name) ? new String_($node->name) : $node->name,
             );
@@ -79,8 +79,8 @@ class SudoVisitor extends NodeVisitorAbstract
             return $this->prepareCall(self::STATIC_PROPERTY_FETCH, $args);
         } elseif ($node instanceof Assign && $node->var instanceof StaticPropertyFetch) {
             $target = $node->var;
-            $class = $target->class instanceof Name ? (string) $target->class : $target->class;
-            $args = array(
+            $class  = $target->class instanceof Name ? (string) $target->class : $target->class;
+            $args   = array(
                 is_string($class) ? new String_($class) : $class,
                 is_string($target->name) ? new String_($target->name) : $target->name,
                 $node->expr,
@@ -88,7 +88,7 @@ class SudoVisitor extends NodeVisitorAbstract
 
             return $this->prepareCall(self::STATIC_PROPERTY_ASSIGN, $args);
         } elseif ($node instanceof StaticCall) {
-            $args = $node->args;
+            $args  = $node->args;
             $class = $node->class instanceof Name ? (string) $node->class : $node->class;
             array_unshift($args, new Arg(is_string($node->name) ? new String_($node->name) : $node->name));
             array_unshift($args, new Arg(is_string($class) ? new String_($class) : $class));
@@ -97,7 +97,7 @@ class SudoVisitor extends NodeVisitorAbstract
             return new StaticCall(new FullyQualifiedName(self::SUDO_CLASS), self::STATIC_CALL, $args);
         } elseif ($node instanceof ClassConstFetch) {
             $class = $node->class instanceof Name ? (string) $node->class : $node->class;
-            $args = array(
+            $args  = array(
                 is_string($class) ? new String_($class) : $class,
                 is_string($node->name) ? new String_($node->name) : $node->name,
             );