19 lines
369 B
PHP
19 lines
369 B
PHP
|
<?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();
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|