Skip to content
Next
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
295
Merge Requests
39
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
a8b13512
Commit
a8b13512
authored
1 hour ago
by
Emiliano Balbuena
Browse files
Options
Download
(cs): Lint
parent
e6d4a489
epic/permissions-28
1 merge request
!350
WIP: Epic/permissions 28
Pipeline
#94370559
passed with stages
in 10 minutes and 16 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
Core/Channels/Delegates/Artifacts/ArtifactsDelegateInterface.php
View file @
a8b13512
...
...
@@ -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
;
}
This diff is collapsed.
Core/Channels/Delegates/Artifacts/UserIndexesDelegate.php
View file @
a8b13512
...
...
@@ -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
;
...
...
This diff is collapsed.
Please
register
or
sign in
to comment