Use short array declarations

This commit is contained in:
Romain Neutron
2014-02-11 18:44:31 +01:00
parent 76048709ee
commit 372fc86601
7 changed files with 19 additions and 19 deletions

View File

@@ -106,7 +106,7 @@ class RemovePluginTest extends PluginCommandTestCase
private function addPluginData()
{
$data = array('key' => 'value');
$data = ['key' => 'value'];
$conf = self::$DI['cli']['phraseanet.configuration']->getConfig();
$conf['plugins']['test-plugin'] = $data;