mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 06:17:56 +08:00
Doc comments and error messages for "YiiRequirementChecker" have been adjusted.
This commit is contained in:
@@ -66,7 +66,7 @@ class YiiRequirementChecker
|
|||||||
$requirements = require($requirements);
|
$requirements = require($requirements);
|
||||||
}
|
}
|
||||||
if (!is_array($requirements)) {
|
if (!is_array($requirements)) {
|
||||||
$this->usageError("Requirements must be an array!");
|
$this->usageError('Requirements must be an array, "'.gettype($requirements).'" has been given!');
|
||||||
}
|
}
|
||||||
if (!isset($this->result) || !is_array($this->result)) {
|
if (!isset($this->result) || !is_array($this->result)) {
|
||||||
$this->result = array(
|
$this->result = array(
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* This is the Yii core requirements for the [[YiiRequirementChecker]] instance.
|
* This is the Yii core requirements for the [[YiiRequirementChecker]] instance.
|
||||||
|
* These requirements are mandatory for any Yii application.
|
||||||
*/
|
*/
|
||||||
return array(
|
return array(
|
||||||
array(
|
array(
|
||||||
|
|||||||
Reference in New Issue
Block a user