Files
wp-inirepo/includes/pluginManager/pluginInstaller.php
2023-02-16 21:22:46 -05:00

12 lines
217 B
PHP

<?php
namespace cooini\Inirepo\pluginManager;
class pluginInstaller
{
public ManagerInterface $manager;
public function __construct(ManagerInterface $manager)
{
$this->manager = $manager;
}
}