Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / psy / psysh / src / ExecutionLoop.php
index eacd1d3c4fba2735d76bbf96e3b1258c374cd417..2e4307cb771be0f03d3064978e765bd6e68c06c3 100644 (file)
@@ -42,7 +42,7 @@ class ExecutionLoop
     {
         // Load user-defined includes
         $load = function (Shell $__psysh__) {
-            set_error_handler([$__psysh__, 'handleError']);
+            \set_error_handler([$__psysh__, 'handleError']);
             foreach ($__psysh__->getIncludes() as $__psysh_include__) {
                 try {
                     include $__psysh_include__;
@@ -52,14 +52,14 @@ class ExecutionLoop
                     $__psysh__->writeException($_e);
                 }
             }
-            restore_error_handler();
+            \restore_error_handler();
             unset($__psysh_include__);
 
             // Override any new local variables with pre-defined scope variables
-            extract($__psysh__->getScopeVariables(false));
+            \extract($__psysh__->getScopeVariables(false));
 
             // ... then add the whole mess of variables back.
-            $__psysh__->setScopeVariables(get_defined_vars());
+            $__psysh__->setScopeVariables(\get_defined_vars());
         };
 
         $load($shell);