1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-19 21:50:08 -07:00
2017-01-17 12:18:45 +01:00

23 lines
369 B
PHP

<?php
namespace AppBundle\Loader;
use Doctrine\ORM\EntityManager;
use Symfony\Component\Console\Output\OutputInterface;
class Loader
{
/**
* @var EntityManager
*/
protected $em;
protected $output;
public function setOutput(OutputInterface $output)
{
$this->output = $output;
$this->output->setDecorated(true);
}
}