Added missing type-hints
This commit is contained in:
@@ -30,7 +30,6 @@ class ItemURI
|
||||
* Insert an item-uri record and return its id
|
||||
*
|
||||
* @param array $fields Item-uri fields
|
||||
*
|
||||
* @return int|null item-uri id
|
||||
* @throws \Exception
|
||||
*/
|
||||
@@ -61,11 +60,10 @@ class ItemURI
|
||||
* Searched for an id of a given uri. Adds it, if not existing yet.
|
||||
*
|
||||
* @param string $uri
|
||||
*
|
||||
* @return integer item-uri id
|
||||
* @throws \Exception
|
||||
*/
|
||||
public static function getIdByURI($uri)
|
||||
public static function getIdByURI(string $uri): int
|
||||
{
|
||||
// If the URI gets too long we only take the first parts and hope for best
|
||||
$uri = substr($uri, 0, 255);
|
||||
@@ -82,11 +80,10 @@ class ItemURI
|
||||
* Searched for an id of a given guid.
|
||||
*
|
||||
* @param string $guid
|
||||
*
|
||||
* @return integer item-uri id
|
||||
* @throws \Exception
|
||||
*/
|
||||
public static function getIdByGUID($guid)
|
||||
public static function getIdByGUID(string $guid): int
|
||||
{
|
||||
// If the GUID gets too long we only take the first parts and hope for best
|
||||
$guid = substr($guid, 0, 255);
|
||||
|
||||
Reference in New Issue
Block a user