diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2022-03-09 21:26:46 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2022-03-09 21:26:46 +0100 |
commit | 82a3901a6d68f088aff335a1bc88b9878e17e990 (patch) | |
tree | c2d21122fa8104cb393b7dd83d9379bceaf27954 /includes/concert.php | |
parent | 06d0591af5f2c9e0ce1c4269c55a503e9956759d (diff) | |
download | gigologadmin-82a3901a6d68f088aff335a1bc88b9878e17e990.tar.gz gigologadmin-82a3901a6d68f088aff335a1bc88b9878e17e990.tar.bz2 gigologadmin-82a3901a6d68f088aff335a1bc88b9878e17e990.zip |
Fix various psalm errors.
Diffstat (limited to 'includes/concert.php')
-rw-r--r-- | includes/concert.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/concert.php b/includes/concert.php index 91fbe57..a8c71db 100644 --- a/includes/concert.php +++ b/includes/concert.php @@ -78,8 +78,8 @@ if ( !class_exists('GiglogAdmin_Concert') ) { /** * Return the concert with the given id. * - * @param int $id. - * @return null|self. + * @param int $id + * @return null|self */ static function get( int $id ) : ?self { |