diff options
Diffstat (limited to 'includes/band.php')
-rw-r--r-- | includes/band.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/includes/band.php b/includes/band.php index 14daa18..81b275a 100644 --- a/includes/band.php +++ b/includes/band.php @@ -46,7 +46,7 @@ if ( !class_exists('GiglogAdmin_Band') ) { return $band; } - static function find($name, $country) + static function find($name, $country): ?self { global $wpdb; @@ -83,6 +83,11 @@ if ( !class_exists('GiglogAdmin_Band') ) { return ($results); } + /** + * @return array|string + * + * @psalm-return array{0: mixed, 1: mixed}|string + */ static function get_band($bid) { global $wpdb; @@ -116,7 +121,7 @@ if ( !class_exists('GiglogAdmin_Band') ) { return ($wpdb->last_error); } - public function save() + public function save(): void { global $wpdb; |