mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-19 21:50:08 -07:00
23 lines
369 B
PHP
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);
|
|
}
|
|
}
|