From 687770a83558701dc6d48ccaad39a18c5e38c33e Mon Sep 17 00:00:00 2001 From: Dmitry Chernikov <4ernikoff@gmail.com> Date: Mon, 23 Jun 2014 18:52:39 +0300 Subject: [PATCH] phpDoc micro-fix --- extensions/bootstrap/Tabs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/bootstrap/Tabs.php b/extensions/bootstrap/Tabs.php index b5669f6801..b968d2380c 100644 --- a/extensions/bootstrap/Tabs.php +++ b/extensions/bootstrap/Tabs.php @@ -60,11 +60,11 @@ class Tabs extends Widget * - label: string, required, the tab header label. * - headerOptions: array, optional, the HTML attributes of the tab header. * - linkOptions: array, optional, the HTML attributes of the tab header link tags. - * - content: array, required if `items` is not set. The content (HTML) of the tab pane. + * - content: string, required if `items` is not set. The content (HTML) of the tab pane. * - options: array, optional, the HTML attributes of the tab pane container. * - active: boolean, optional, whether the item tab header and pane should be visible or not. * - items: array, optional, if not set then `content` will be required. The `items` specify a dropdown items - * configuration array. Each item can hold two extra keys, besides the above ones: + * configuration array. Each item can hold three extra keys, besides the above ones: * * active: boolean, optional, whether the item tab header and pane should be visible or not. * * content: string, required if `items` is not set. The content (HTML) of the tab pane. * * contentOptions: optional, array, the HTML attributes of the tab content container.