<?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;
}