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