@@ -20,7 +20,7 @@ |
||
20 | 20 | * Register myself so that all associated JS and CSS files can be found and automatically included |
21 | 21 | * @param $extensions |
22 | 22 | * |
23 | - * @return array |
|
23 | + * @return string[] |
|
24 | 24 | */ |
25 | 25 | function register_myself( $extensions ) { |
26 | 26 | $extensions[] = __FILE__; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * Register myself so that all associated JS and CSS files can be found and automatically included |
21 | 21 | * @param $extensions |
22 | 22 | * |
23 | - * @return array |
|
23 | + * @return string[] |
|
24 | 24 | */ |
25 | 25 | function register_myself( $extensions ) { |
26 | 26 | $extensions[] = __FILE__; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * Register myself so that all associated JS and CSS files can be found and automatically included |
21 | 21 | * @param $extensions |
22 | 22 | * |
23 | - * @return array |
|
23 | + * @return string[] |
|
24 | 24 | */ |
25 | 25 | function register_myself( $extensions ) { |
26 | 26 | $extensions[] = __FILE__; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * Register myself so that all associated JS and CSS files can be found and automatically included |
21 | 21 | * @param $extensions |
22 | 22 | * |
23 | - * @return array |
|
23 | + * @return string[] |
|
24 | 24 | */ |
25 | 25 | function register_myself( $extensions ) { |
26 | 26 | $extensions[] = __FILE__; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * Register myself so that all associated JS and CSS files can be found and automatically included |
21 | 21 | * @param $extensions |
22 | 22 | * |
23 | - * @return array |
|
23 | + * @return string[] |
|
24 | 24 | */ |
25 | 25 | function register_myself( $extensions ) { |
26 | 26 | $extensions[] = __FILE__; |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * Register myself so that all associated JS and CSS files can be found and automatically included |
21 | 21 | * @param $extensions |
22 | 22 | * |
23 | - * @return array |
|
23 | + * @return string[] |
|
24 | 24 | */ |
25 | 25 | function register_myself( $extensions ) { |
26 | 26 | $extensions[] = __FILE__; |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | /** |
83 | 83 | * private function to load a gallery by the slug. |
84 | 84 | * Will be used when loading gallery shortcodes |
85 | - * @param $slug |
|
85 | + * @param string $slug |
|
86 | 86 | */ |
87 | 87 | private function load_by_slug( $slug ) { |
88 | 88 | if ( ! empty( $slug ) ) { |
@@ -144,6 +144,9 @@ discard block |
||
144 | 144 | return $gallery; |
145 | 145 | } |
146 | 146 | |
147 | + /** |
|
148 | + * @param boolean $default |
|
149 | + */ |
|
147 | 150 | function get_meta( $key, $default ) { |
148 | 151 | if ( ! is_array( $this->settings ) ) { |
149 | 152 | return $default; |
@@ -251,7 +254,7 @@ discard block |
||
251 | 254 | /** |
252 | 255 | * @deprecated 1.3.0 This is now moved into the datasource implementation |
253 | 256 | * |
254 | - * @return int|mixed|string |
|
257 | + * @return integer |
|
255 | 258 | */ |
256 | 259 | public function find_featured_attachment_id() { |
257 | 260 | _deprecated_function( __FUNCTION__, '1.3.0' ); |
@@ -25,7 +25,7 @@ |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * FooGallery_Admin_Gallery_MetaBox_Settings_Helper constructor. |
28 | - * @param $gallery FooGallery |
|
28 | + * @param FooGallery $gallery FooGallery |
|
29 | 29 | */ |
30 | 30 | function __construct($gallery) { |
31 | 31 | $this->gallery = $gallery; |