hotfix: Stubs for structured rewrite
This commit is contained in:
19
src/Runner/RunnerFactory.php
Normal file
19
src/Runner/RunnerFactory.php
Normal 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();
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user