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