Fixes #12055: Changed boolean to bool and integer to int in phpdoc

This commit is contained in:
Robert Korulczyk
2016-11-07 00:51:39 +01:00
committed by Alexander Makarov
parent 940f7c7cd4
commit 4aa935e69e
292 changed files with 1670 additions and 1670 deletions

View File

@@ -28,7 +28,7 @@ interface DataProviderInterface
*
* This method will be implicitly called by [[getModels()]] and [[getKeys()]] if it has not been called before.
*
* @param boolean $forcePrepare whether to force data preparation even if it has been done before.
* @param bool $forcePrepare whether to force data preparation even if it has been done before.
*/
public function prepare($forcePrepare = false);
@@ -36,14 +36,14 @@ interface DataProviderInterface
* Returns the number of data models in the current page.
* This is equivalent to `count($provider->getModels())`.
* When [[getPagination|pagination]] is false, this is the same as [[getTotalCount|totalCount]].
* @return integer the number of data models in the current page.
* @return int the number of data models in the current page.
*/
public function getCount();
/**
* Returns the total number of data models.
* When [[getPagination|pagination]] is false, this is the same as [[getCount|count]].
* @return integer total number of possible data models.
* @return int total number of possible data models.
*/
public function getTotalCount();