php-hotfix/src/Runner/PhpRunner.php

24 lines
319 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;
/**
* Run hotfixes written in PHP
*
*
*/
class PhpRunner implements RunnerInterface
{
public function prepare(Hotfix $hotfix, Facts $facts)
{
}
public function apply()
{
}
}