first commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Core\Repository\UserPropertyMapping;
|
||||
|
||||
use App\Core\Repository\EleqouentAbstractRepository;
|
||||
use App\Models\UserPropertyMapping;
|
||||
|
||||
class UserPropertyMappingRepository extends EleqouentAbstractRepository
|
||||
{
|
||||
private $userPropertyMapping;
|
||||
|
||||
public function __construct(UserPropertyMapping $userPropertyMapping)
|
||||
{
|
||||
parent::__construct();
|
||||
$this->userPropertyMapping = $userPropertyMapping;
|
||||
$this->defaultModel = $this->userPropertyMapping;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user