mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Replacing call of static:: for self as it is php 5.3 specific
This commit is contained in:
parent
3e3817f113
commit
c1dc753be5
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ class TestManager {
|
|||
* @static
|
||||
*/
|
||||
protected static function _isTestGroupFile($file) {
|
||||
return static::_hasExpectedExtension($file, static::$_groupExtension);
|
||||
return self::_hasExpectedExtension($file, self::$_groupExtension);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue