* Adjust method return value type for gitlab getByID.

This commit is contained in:
caoyanyi
2023-12-14 16:38:31 +08:00
parent 563cf26137
commit 8b081dfce7
+2 -2
View File
@@ -29,9 +29,9 @@ class gitlabModel extends model
*
* @param int $id
* @access public
* @return object
* @return object|false
*/
public function getByID(int $id): object
public function getByID(int $id): object|false
{
return $this->loadModel('pipeline')->getByID($id);
}