Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / psy / psysh / src / CodeCleaner / LoopContextPass.php
index 9744fcb6c23ba293e29a94d82b3c800081a5725c..933278e73610face7ac5c9f1b7c9ef840d6b5f84 100644 (file)
@@ -62,23 +62,23 @@ class LoopContextPass extends CodeCleanerPass
                 $operator = $node instanceof Break_ ? 'break' : 'continue';
 
                 if ($this->loopDepth === 0) {
-                    $msg = sprintf("'%s' not in the 'loop' or 'switch' context", $operator);
+                    $msg = \sprintf("'%s' not in the 'loop' or 'switch' context", $operator);
                     throw new FatalErrorException($msg, 0, E_ERROR, null, $node->getLine());
                 }
 
                 if ($node->num instanceof LNumber || $node->num instanceof DNumber) {
                     $num = $node->num->value;
                     if ($node->num instanceof DNumber || $num < 1) {
-                        $msg = sprintf("'%s' operator accepts only positive numbers", $operator);
+                        $msg = \sprintf("'%s' operator accepts only positive numbers", $operator);
                         throw new FatalErrorException($msg, 0, E_ERROR, null, $node->getLine());
                     }
 
                     if ($num > $this->loopDepth) {
-                        $msg = sprintf("Cannot '%s' %d levels", $operator, $num);
+                        $msg = \sprintf("Cannot '%s' %d levels", $operator, $num);
                         throw new FatalErrorException($msg, 0, E_ERROR, null, $node->getLine());
                     }
                 } elseif ($node->num) {
-                    $msg = sprintf("'%s' operator with non-constant operand is no longer supported", $operator);
+                    $msg = \sprintf("'%s' operator with non-constant operand is no longer supported", $operator);
                     throw new FatalErrorException($msg, 0, E_ERROR, null, $node->getLine());
                 }
                 break;