Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / psy / psysh / src / Exception / ThrowUpException.php
index 8c3eb06c404fca3924779a00e984d56ebb91e1bd..b0ca490a7735575d1ccb4c4d42a9f65cc105906a 100644 (file)
@@ -21,7 +21,7 @@ class ThrowUpException extends \Exception implements Exception
      */
     public function __construct(\Exception $exception)
     {
-        $message = sprintf("Throwing %s with message '%s'", get_class($exception), $exception->getMessage());
+        $message = \sprintf("Throwing %s with message '%s'", \get_class($exception), $exception->getMessage());
         parent::__construct($message, $exception->getCode(), $exception);
     }