9 lines
132 B
PHP
9 lines
132 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Repositories\Api\Access\Profession;
|
||
|
|
|
||
|
|
interface ProfessionInterface
|
||
|
|
{
|
||
|
|
public function index(array $data);
|
||
|
|
}
|