php-hotfix/src/Runner/PhpRunner.php

24 lines
319 B
PHP

<?php
namespace NoccyLabs\Hotfix\Runner;
use NoccyLabs\Hotfix\System\Facts;
use NoccyLabs\Hotfix\Hotfix\Hotfix;
/**
* Run hotfixes written in PHP
*
*
*/
class PhpRunner implements RunnerInterface
{
public function prepare(Hotfix $hotfix, Facts $facts)
{
}
public function apply()
{
}
}