chore(tests): UT for PluginBase service

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2024-04-19 20:58:50 +02:00
parent 21f392bb17
commit 03e4a57562
32 changed files with 360 additions and 320 deletions

View File

@@ -34,12 +34,12 @@ use SP\Infrastructure\Common\Repositories\NoSuchItemException;
interface PluginCompatilityService
{
/**
* @param PluginInterface $plugin
* @param Plugin $plugin
*
* @return bool
* @throws ConstraintException
* @throws NoSuchItemException
* @throws QueryException
*/
public function checkFor(PluginInterface $plugin): bool;
public function checkFor(Plugin $plugin): bool;
}