18 lines
349 B
PHP
18 lines
349 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Eloquent;
|
|
|
|
use App\Models\User;
|
|
use App\Contracts\Repository\UserRepositoryInterface;
|
|
|
|
class UserRepository extends EloquentRepository implements UserRepositoryInterface
|
|
{
|
|
/**
|
|
* Return the model backing this repository.
|
|
*/
|
|
public function model(): string
|
|
{
|
|
return User::class;
|
|
}
|
|
}
|