예제 #1
0
 /**
  * {@inheritDoc}
  */
 public function afterOutlineExample(OutlineExampleEvent $event)
 {
     parent::afterOutlineExample($event);
     $context = $event->getContext();
     if ($context instanceof SauceContext) {
         if ($context->isLocal()) {
             return;
         }
         $this->writeln(sprintf('        %s: %s', $this->translate('Sauce On-Demand Job'), $context->getNoLoginJobLink()));
         $this->writeln();
     }
 }