Security update for Core, with self-updated composer
[yaffs-website] / vendor / psy / psysh / src / Psy / TabCompletion / Matcher / FunctionsMatcher.php
index b1678b3eddda9324478c1eb41ad32b6aa988fac8..aa37f88352c252b837893c77dd9ac4a46c6d7743 100644 (file)
@@ -27,7 +27,7 @@ class FunctionsMatcher extends AbstractMatcher
     {
         $func = $this->getInput($tokens);
 
-        $functions = get_defined_functions();
+        $functions    = get_defined_functions();
         $allFunctions = array_merge($functions['user'], $functions['internal']);
 
         return array_filter($allFunctions, function ($function) use ($func) {
@@ -40,7 +40,7 @@ class FunctionsMatcher extends AbstractMatcher
      */
     public function hasMatched(array $tokens)
     {
-        $token = array_pop($tokens);
+        $token     = array_pop($tokens);
         $prevToken = array_pop($tokens);
 
         switch (true) {