Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / console / Question / ConfirmationQuestion.php
index 40f54b4e9b8d89d4ff59d05f3e7c01ab4fe6c41b..150ab27f303be10fc649e81c654b0ef6c66b5f77 100644 (file)
@@ -44,7 +44,7 @@ class ConfirmationQuestion extends Question
         $regex = $this->trueAnswerRegex;
 
         return function ($answer) use ($default, $regex) {
-            if (is_bool($answer)) {
+            if (\is_bool($answer)) {
                 return $answer;
             }