hotfix: Stubs for structured rewrite

This commit is contained in:
2016-12-11 16:15:36 +01:00
parent 2f1628b7d8
commit 0b5ed81b78
9 changed files with 136 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<?php
namespace NoccyLabs\Hotfix\Runner;
use NoccyLabs\Hotfix\System\Facts;
use NoccyLabs\Hotfix\Hotfix\Hotfix;
use NoccyLabs\Hotfix\Exception\UnsupportedRunnerException;
use NoccyLabs\Hotfix\Exception\NotCompatibleException;
class RunnerFactory
{
public static function createRunner(Hotfix $hotfix)
{
$facts = Facts::getSystemFacts();
}
}