mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	Add missing methods so phpstan stops complaining.
This commit is contained in:
		| @@ -23,14 +23,24 @@ declare(strict_types=1); | ||||
| 
 | ||||
| namespace FireflyIII\Repositories\User; | ||||
| 
 | ||||
| use FireflyIII\Enums\UserRoleEnum; | ||||
| use FireflyIII\Models\InvitedUser; | ||||
| use FireflyIII\Models\Role; | ||||
| use FireflyIII\Models\UserGroup; | ||||
| use FireflyIII\User; | ||||
| use Illuminate\Contracts\Auth\Authenticatable; | ||||
| use Illuminate\Support\Collection; | ||||
| 
 | ||||
| /** | ||||
|  * Interface UserRepositoryInterface. | ||||
|  * | ||||
|  * @method setUserGroup(UserGroup $group) | ||||
|  * @method getUserGroup() | ||||
|  * @method getUser() | ||||
|  * @method checkUserGroupAccess(UserRoleEnum $role) | ||||
|  * @method setUser(null|Authenticatable|User $user) | ||||
|  * @method setUserGroupById(int $userGroupId) | ||||
|  * | ||||
|  */ | ||||
| interface UserRepositoryInterface | ||||
| { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user