php-hotfix/src/Runner/RunnerInterface.php

14 lines
210 B
PHP

<?php
namespace NoccyLabs\Hotfix\Runner;
use NoccyLabs\Hotfix\System\Facts;
use NoccyLabs\Hotfix\Hotfix\Hotfix;
interface RunnerInterface
{
public function applyHotfix(Hotfix $hotfix, Facts $facts);
}