Example #1
0
 /**
  * Execute command
  */
 public function fire()
 {
     // Logo
     $this->output->writeln(Application::getLogo());
     // File about
     $file_about = __DIR__ . '/../Resources/about.txt';
     if (file_exists($file_about)) {
         $this->output->writeln(file_get_contents($file_about));
         return true;
     }
     $this->error('File about not found');
     return false;
 }