summaryrefslogtreecommitdiffstats
path: root/3355.patch
diff options
context:
space:
mode:
Diffstat (limited to '3355.patch')
-rw-r--r--3355.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/3355.patch b/3355.patch
deleted file mode 100644
index 9cfaa05..0000000
--- a/3355.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Adapted for 7.4.1 from
-
-From 03e86defca1096cfbbf9962c1151773ac8767fcb Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@remirepo.net>
-Date: Thu, 18 Oct 2018 14:58:51 +0200
-Subject: [PATCH] Fix #3354
-
----
- src/TextUI/TestRunner.php | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/TextUI/TestRunner.php b/src/TextUI/TestRunner.php
-index 00c2fcf860..bc167dd14e 100644
---- a/src/TextUI/TestRunner.php
-+++ b/src/TextUI/TestRunner.php
-@@ -158,7 +158,7 @@ class TestRunner extends BaseTestRunner
-
- $this->handleConfiguration($arguments);
-
-- if ($arguments['columns'] < 16) {
-+ if (\is_int($arguments['columns']) && $arguments['columns'] < 16) {
- $arguments['columns'] = 16;
- $tooFewColumnsRequested = true;
- }