From f6a3a4409c8e0f8a95e727b1c728135330c51902 Mon Sep 17 00:00:00 2001 From: Alexander Mohorev Date: Mon, 3 Mar 2014 20:50:44 +0300 Subject: [PATCH] @param, @var, @property and @return must declare types as boolean, integer, string, array or null --- NavBar.php | 2 +- Progress.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NavBar.php b/NavBar.php index 8cc3579..2cdd93c 100644 --- a/NavBar.php +++ b/NavBar.php @@ -70,7 +70,7 @@ class NavBar extends Widget */ public $screenReaderToggleText = 'Toggle navigation'; /** - * @var bool whether the navbar content should be included in an inner div container which by default + * @var boolean whether the navbar content should be included in an inner div container which by default * adds left and right padding. Set this to false for a 100% width navbar. */ public $renderInnerContainer = true; diff --git a/Progress.php b/Progress.php index 8f23a58..fbfe135 100644 --- a/Progress.php +++ b/Progress.php @@ -133,7 +133,7 @@ class Progress extends Widget /** * Generates a bar - * @param int $percent the percentage of the bar + * @param integer $percent the percentage of the bar * @param string $label, optional, the label to display at the bar * @param array $options the HTML attributes of the bar * @return string the rendering result.