Commit a8b13512 authored by Emiliano Balbuena's avatar Emiliano Balbuena

(cs): Lint

1 merge request!350WIP: Epic/permissions 28
Pipeline #94370559 passed with stages
in 10 minutes and 16 seconds
......@@ -6,6 +6,7 @@
*/
namespace Minds\Core\Channels\Delegates\Artifacts;
use Minds\Entities\User;
interface ArtifactsDelegateInterface
......@@ -34,9 +35,9 @@ interface ArtifactsDelegateInterface
*/
public function delete($userGuid) : bool;
/**
* @param User $user
* @return bool
*/
/**
* @param User $user
* @return bool
*/
public function updateOwnerObject($userGuid, array $value) : bool;
}
......@@ -85,11 +85,11 @@ class UserIndexesDelegate implements ArtifactsDelegateInterface
}
}
/**
* @param string|int $userGuid
* Nothing to do here
* @return bool
*/
/**
* @param string|int $userGuid
* Nothing to do here
* @return bool
*/
public function updateOwnerObject($userGuid, array $ownerObject) : bool
{
return true;
......
Please register or to comment