16 lines
315 B
PHP
16 lines
315 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\Stock\ProductPackaging;
|
|
|
|
class ProductPackagingRepository extends BaseRepository implements ProductPackagingRepositoryInterface
|
|
{
|
|
public function __construct(ProductPackaging $model)
|
|
{
|
|
parent::__construct($model);
|
|
}
|
|
}
|