mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-27 12:33:09 +08:00
Merge pull request #1774 from creocoder/fixture-controller-code-style-fixes
FixtureController code style fixes and typo fixes
This commit is contained in:
@@ -106,9 +106,8 @@ class FixtureController extends Controller
|
|||||||
*/
|
*/
|
||||||
public function actionApply(array $fixtures)
|
public function actionApply(array $fixtures)
|
||||||
{
|
{
|
||||||
if ($this->getFixtureManager() == null) {
|
if ($this->getFixtureManager() === null) {
|
||||||
throw new Exception('Fixture manager is not configured properly. '
|
throw new Exception('Fixture manager is not configured properly. Please refer to official documentation for this purposes.');
|
||||||
. 'Please refer to official documentation for this purposes.');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$this->confirmApply($fixtures)) {
|
if (!$this->confirmApply($fixtures)) {
|
||||||
@@ -148,7 +147,7 @@ class FixtureController extends Controller
|
|||||||
$path = Yii::getAlias($this->fixturePath, false);
|
$path = Yii::getAlias($this->fixturePath, false);
|
||||||
|
|
||||||
if (!is_dir($path) || !is_writable($path)) {
|
if (!is_dir($path) || !is_writable($path)) {
|
||||||
throw new Exception("The fixtures path \"{$this->fixturePath}\" not exist or is not writable");
|
throw new Exception("The fixtures path \"{$this->fixturePath}\" not exist or is not writable.");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user