wp-inirepo/includes/pluginManager/pluginInstaller.php

12 lines
217 B
PHP

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