From da6eada8c88addc3cb4723a1557cb76336eb3d64 Mon Sep 17 00:00:00 2001 From: Nikolay Oleynikov Date: Thu, 27 Apr 2017 17:46:46 +0300 Subject: [PATCH] Fix an invalid phpDocumentor annotation Fixed an invalid phpDocumentor annotation of `yii\data\DataProviderInterface::getPagination()`. --- framework/data/DataProviderInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/data/DataProviderInterface.php b/framework/data/DataProviderInterface.php index 1eed882..71ed1fe 100644 --- a/framework/data/DataProviderInterface.php +++ b/framework/data/DataProviderInterface.php @@ -66,7 +66,7 @@ interface DataProviderInterface public function getSort(); /** - * @return Pagination the pagination object. If this is false, it means the pagination is disabled. + * @return Pagination|false the pagination object. If this is false, it means the pagination is disabled. */ public function getPagination(); }