mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Use traditional array syntax
This commit is contained in:
parent
d84b6a2c22
commit
031ae3d105
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ abstract class ShellHelper {
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $_defaultConfig = [];
|
protected $_defaultConfig = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ConsoleOutput instance.
|
* ConsoleOutput instance.
|
||||||
|
@ -34,7 +34,7 @@ abstract class ShellHelper {
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $_config = [];
|
protected $_config = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the config property has already been configured with defaults
|
* Whether the config property has already been configured with defaults
|
||||||
|
|
Loading…
Reference in a new issue