php-hotfix/src/Runner/PythonRunner.php

25 lines
409 B
PHP

<?php
namespace NoccyLabs\Hotfix\Runner;
use NoccyLabs\Hotfix\System\Facts;
use NoccyLabs\Hotfix\Hotfix\Hotfix;
/**
* Run hotfixes written in Python.
*
*
*/
class PythonRunner implements RunnerInterface
{
public function prepare(Hotfix $hotfix, Facts $facts)
{
throw new NotImplementedException("The Python runner is not implemented");
}
public function apply()
{
}
}