10 lines
144 B
PHP
10 lines
144 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
interface ProductPackagingRepositoryInterface extends BaseRepositoryInterface
|
|
{
|
|
}
|