Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / psy / psysh / src / Command / DumpCommand.php
index 77bd0e2d9136c82658f4a4868b00c2e8562af24f..9a8aad826b5aada4a9a0dc39eca2512c20232fb4 100644 (file)
@@ -73,7 +73,7 @@ HELP
         $target = $this->resolveCode($input->getArgument('target'));
         $output->page($this->presenter->present($target, $depth, $input->getOption('all') ? Presenter::VERBOSE : 0));
 
-        if (is_object($target)) {
+        if (\is_object($target)) {
             $this->setCommandScopeVariables(new \ReflectionObject($target));
         }
     }
@@ -87,7 +87,7 @@ HELP
      */
     protected function resolveTarget($name)
     {
-        @trigger_error('`resolveTarget` is deprecated; use `resolveCode` instead.', E_USER_DEPRECATED);
+        @\trigger_error('`resolveTarget` is deprecated; use `resolveCode` instead.', E_USER_DEPRECATED);
 
         return $this->resolveCode($name);
     }