@@ -34,101 +34,101 @@ public function __construct($autoCompile=true) {
3434
3535 /**
3636 * Retourne un composant Dialog
37- * @return \Ajax\Components\ Dialog
37+ * @return Dialog
3838 */
3939 public function dialog ($ attachTo =NULL , $ params =NULL ) {
4040 return $ this ->addComponent (new Dialog ($ this ->js ), $ attachTo , $ params );
4141 }
4242
4343 /**
4444 * Retourne un composant Accordion
45- * @return \Ajax\Components\ Accordion
45+ * @return Accordion
4646 */
4747 public function accordion ($ attachTo =NULL , $ params =NULL ) {
4848 return $ this ->addComponent (new Accordion ($ this ->js ), $ attachTo , $ params );
4949 }
5050
5151 /**
5252 * Retourne un composant Menu
53- * @return \Ajax\Components\ Menu
53+ * @return Menu
5454 */
5555 public function menu ($ attachTo =NULL , $ params =NULL ) {
5656 return $ this ->addComponent (new Menu ($ this ->js ), $ attachTo , $ params );
5757 }
5858
5959 /**
6060 * Retourne un composant Progressbar
61- * @return \Ajax\Components\ Progressbar
61+ * @return Progressbar
6262 */
6363 public function progressbar ($ attachTo =NULL , $ params =NULL ) {
6464 return $ this ->addComponent (new Progressbar ($ this ->js ), $ attachTo , $ params );
6565 }
6666
6767 /**
6868 * Retourne un composant Selectmenu
69- * @return \Ajax\Components\ Selectmenu
69+ * @return Selectmenu
7070 */
7171 public function selectmenu ($ attachTo =NULL , $ params =NULL ) {
7272 return $ this ->addComponent (new Selectmenu ($ this ->js ), $ attachTo , $ params );
7373 }
7474
7575 /**
7676 * Retourne un composant Slider
77- * @return \Ajax\Components\ Slider
77+ * @return Slider
7878 */
7979 public function slider ($ attachTo =NULL , $ params =NULL ) {
8080 return $ this ->addComponent (new Slider ($ this ->js ), $ attachTo , $ params );
8181 }
8282
8383 /**
8484 * Retourne un composant Spinner
85- * @return \Ajax\Components\ Spinner
85+ * @return Spinner
8686 */
8787 public function spinner ($ attachTo =NULL , $ params =NULL ) {
8888 return $ this ->addComponent (new Spinner ($ this ->js ), $ attachTo , $ params );
8989 }
9090
9191 /**
9292 * Retourne un composant Autocomplete
93- * @return \Ajax\Components\ Autocomplete
93+ * @return Autocomplete
9494 */
9595 public function autocomplete ($ attachTo =NULL , $ params =NULL ) {
9696 return $ this ->addComponent (new Autocomplete ($ this ->js ), $ attachTo , $ params );
9797 }
9898
9999 /**
100100 * Create and return a Tabs component
101- * @return \Ajax\Components\ Tabs
101+ * @return Tabs
102102 */
103103 public function tabs ($ attachTo =NULL , $ params =NULL ) {
104104 return $ this ->addComponent (new Tabs ($ this ->js ), $ attachTo , $ params );
105105 }
106106
107107 /**
108108 * Create and return a Button component
109- * @param $attachTo css/jquery selector attached to the component
110- * @param $params php array of parameters
111- * @return \Ajax\Components\ Button
109+ * @param string $attachTo css/jquery selector attached to the component
110+ * @param array $params php array of parameters
111+ * @return Button
112112 */
113113 public function button ($ attachTo =NULL , $ params =NULL ) {
114114 return $ this ->addComponent (new Button ($ this ->js ), $ attachTo , $ params );
115115 }
116116
117117 /**
118118 * Create and return a ButtonSet component
119- * @param $attachTo css/jquery selector attached to the component
120- * @param $params php array of parameters
121- * @return \Ajax\Components\ ButtonSet
119+ * @param string $attachTo css/jquery selector attached to the component
120+ * @param array $params php array of parameters
121+ * @return ButtonSet
122122 */
123123 public function buttonSet ($ attachTo =NULL , $ params =NULL ) {
124124 return $ this ->addComponent (new Buttonset ($ this ->js ), $ attachTo , $ params );
125125 }
126126
127127 /**
128128 * Create and return a Tooltip component
129- * @param $attachTo css/jquery selector attached to the component
130- * @param $params php array of parameters
131- * @return \Ajax\Components\ Tooltip
129+ * @param string $attachTo css/jquery selector attached to the component
130+ * @param array $params php array of parameters
131+ * @return Tooltip
132132 */
133133 public function tooltip ($ attachTo =NULL , $ params =NULL ) {
134134 return $ this ->addComponent (new Tooltip ($ this ->js ), $ attachTo , $ params );
0 commit comments