Ejemplo n.º 1
0
 protected function initialize(InputInterface $input, OutputInterface $output)
 {
     parent::initialize($input, $output);
     $path = dirname(dirname(dirname(__FILE__))) . '/Symlinkers';
     if (file_exists($path)) {
         foreach (glob($path . '/*.php') as $symlinker) {
             require_once $symlinker;
         }
     }
 }