Files
php-hotfix/src/Runner/RunnerFactory.php

19 lines
369 B
PHP
Raw Normal View History

2016-12-11 16:15:36 +01:00
<?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();
}
}