mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 06:53:15 +00:00
Use short array declaration
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
class PhraseanetPHPUnitListener implements PHPUnit_Framework_TestListener
|
||||
{
|
||||
private static $skipped = array();
|
||||
private static $skipped = [];
|
||||
|
||||
public function addError(PHPUnit_Framework_Test $test, Exception $e, $time)
|
||||
{
|
||||
@@ -33,7 +33,7 @@ class PhraseanetPHPUnitListener implements PHPUnit_Framework_TestListener
|
||||
|
||||
public static function resetSkipped()
|
||||
{
|
||||
static::$skipped = array();
|
||||
static::$skipped = [];
|
||||
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user