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