9 lines
241 B
PHP
9 lines
241 B
PHP
|
<?php
|
||
|
namespace cooini\iniRepo\repositories;
|
||
|
|
||
|
interface repositoryInterface
|
||
|
{
|
||
|
public function getLicensed(string $type) ;
|
||
|
public function get(string $item_name) : array;
|
||
|
public function isItemLicensed(string $item_name) : bool;
|
||
|
}
|