[Nostromo] Revert RuntimeInterface

This commit is contained in:
Andrés Montañez
2017-01-01 01:33:34 -03:00
parent 196f84ceb1
commit d8cd3b4058
8 changed files with 44 additions and 273 deletions
+4 -4
View File
@@ -10,7 +10,7 @@
namespace Mage\Command;
use Mage\Runtime\RuntimeInterface;
use Mage\Runtime\Runtime;
use Psr\Log\LoggerInterface;
use Psr\Log\LogLevel;
use Symfony\Component\Console\Command\Command;
@@ -23,17 +23,17 @@ use Symfony\Component\Console\Command\Command;
abstract class AbstractCommand extends Command
{
/**
* @var RuntimeInterface Current Runtime instance
* @var Runtime Current Runtime instance
*/
protected $runtime;
/**
* Set the Runtime configuration
*
* @param RuntimeInterface $runtime Runtime container
* @param Runtime $runtime Runtime container
* @return AbstractCommand
*/
public function setRuntime(RuntimeInterface $runtime)
public function setRuntime(Runtime $runtime)
{
$this->runtime = $runtime;