Esempio n. 1
0
 protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
 {
     $em = $this->getHelper('em')->getEntityManager();
     $playerRepository = new PlayerRepository($em);
     $pitchers = $playerRepository->getAllPitchers();
     $count = 0;
     $stats = array();
     foreach ($pitchers as $pitcher) {
         $output->writeln($pitcher);
         $matchups = $pitcher->getPitchingMatchupsAsPitcher();
         $runsAllowed = 0;
         $totalMatchups = 0;
         foreach ($matchups as $matchup) {
             $runsAllowed += $matchup->getRunsScored();
             //$output->writeln($matchup);
             $totalMatchups++;
         }
         $output->writeln('Total Matchups: ' . $totalMatchups);
         $output->writeln('Runs allowed: ' . $runsAllowed);
     }
 }