fixed phpdoc type names

This commit is contained in:
Carsten Brandt
2016-02-25 20:24:07 +01:00
parent ef050338cc
commit 191f2a4943
18 changed files with 38 additions and 21 deletions

View File

@ -133,7 +133,7 @@ class CacheController extends Controller
* ```
*
* @param string $db id connection component
* @return int exit code
* @return integer exit code
* @throws Exception
* @throws \yii\base\InvalidConfigException
*

View File

@ -368,7 +368,7 @@ class FixtureController extends Controller
/**
* Checks if needed to apply all fixtures.
* @param string $fixture
* @return bool
* @return boolean
*/
public function needToApplyAll($fixture)
{

View File

@ -164,7 +164,7 @@ class HelpController extends Controller
/**
* Validates if the given class is a valid console controller class.
* @param string $controllerClass
* @return bool
* @return boolean
*/
protected function validateControllerClass($controllerClass)
{

View File

@ -574,7 +574,7 @@ EOD;
* Finds out a line of the first non-char PHP token found
*
* @param array $tokens
* @return int|string
* @return integer|string
* @since 2.0.1
*/
protected function getLine($tokens)

View File

@ -47,7 +47,7 @@ class ServeController extends Controller
*
* @param string $address address to serve on. Either "host" or "host:port".
*
* @return int
* @return integer
*/
public function actionIndex($address = 'localhost')
{