13 lines
308 B
PHP
13 lines
308 B
PHP
|
<?php
|
||
|
|
||
|
namespace cooini\Inirepo\pluginManager;
|
||
|
use cooini\Inirepo\POPO\repository;
|
||
|
|
||
|
interface ManagerInterface
|
||
|
{
|
||
|
public function getPluginInstaller() ;
|
||
|
public function getRequiredPlugins() : array;
|
||
|
public function getLicensedPlugins() : array;
|
||
|
public function getRepository() : repository;
|
||
|
|
||
|
}
|