15 lines
257 B
PHP
15 lines
257 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Entities\User;
|
|
use App\Core\Database;
|
|
|
|
class UserRepository extends BaseRepository
|
|
{
|
|
public function __construct(Database $database)
|
|
{
|
|
parent::__construct($database, "users", User::class);
|
|
}
|
|
}
|