mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-09 01:27:20 +08:00
fix code style No space found after comma in function call
This commit is contained in:
@ -64,7 +64,7 @@ class FixtureController extends Controller
|
||||
public function globalOptions()
|
||||
{
|
||||
return array_merge(parent::globalOptions(), [
|
||||
'namespace','globalFixtures'
|
||||
'namespace', 'globalFixtures'
|
||||
]);
|
||||
}
|
||||
|
||||
@ -100,7 +100,7 @@ class FixtureController extends Controller
|
||||
}
|
||||
|
||||
$filtered = array_diff($foundFixtures, $except);
|
||||
$fixtures = $this->getFixturesConfig(array_merge($this->globalFixtures ,$filtered));
|
||||
$fixtures = $this->getFixturesConfig(array_merge($this->globalFixtures, $filtered));
|
||||
|
||||
if (!$fixtures) {
|
||||
throw new Exception('No fixtures were found in namespace: "' . $this->namespace . '"' . '');
|
||||
|
||||
Reference in New Issue
Block a user