diff vendor/psy/psysh/src/ExecutionLoop.php @ 4:a9cd425dd02b

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:11:55 +0000
parents c75dbcec494b
children
line wrap: on
line diff
--- a/vendor/psy/psysh/src/ExecutionLoop.php	Thu Feb 28 11:14:44 2019 +0000
+++ b/vendor/psy/psysh/src/ExecutionLoop.php	Thu Feb 28 13:11:55 2019 +0000
@@ -42,7 +42,7 @@
     {
         // 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 @@
                     $__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);