php-hotfix/src/Runner/RunnerInterface.php

16 lines
236 B
PHP
Raw Normal View History

2016-12-11 15:15:36 +00:00
<?php
namespace NoccyLabs\Hotfix\Runner;
use NoccyLabs\Hotfix\System\Facts;
use NoccyLabs\Hotfix\Hotfix\Hotfix;
interface RunnerInterface
{
public function prepare(Hotfix $hotfix, Facts $facts);
public function apply();
2016-12-11 15:15:36 +00:00
}