From 92e6c138c5250e2980f77bcc0eaa44bc8df2f6f2 Mon Sep 17 00:00:00 2001 From: mark_story Date: Mon, 12 May 2014 14:29:10 -0400 Subject: [PATCH] Add missing static on Debugger::output() This method should have been static the whole time, and the lack of static was causing tests to fail on PHP 5.6 --- lib/Cake/Utility/Debugger.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Utility/Debugger.php b/lib/Cake/Utility/Debugger.php index ad6ff9a01..05c2e290f 100644 --- a/lib/Cake/Utility/Debugger.php +++ b/lib/Cake/Utility/Debugger.php @@ -698,7 +698,7 @@ class Debugger { * @deprecated Use Debugger::outputAs() and Debugger::addFormat(). Will be removed * in 3.0 */ - public function output($format = null, $strings = array()) { + public static function output($format = null, $strings = array()) { $self = Debugger::getInstance(); $data = null;