mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
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
This commit is contained in:
parent
5e369a5a86
commit
92e6c138c5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue