19 lines
337 B
PHP
19 lines
337 B
PHP
<?php
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Order;
|
|
|
|
class OrderRepository extends RepositoryBase implements OrderRepositoryInterface
|
|
{
|
|
/**
|
|
* @var array[]
|
|
*/
|
|
private array $defaultRelations = [];
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct(Order::class, $this->defaultRelations);
|
|
}
|
|
}
|