Code Duplication    Length = 10-10 lines in 2 locations

src/PlaygroundGame/Controller/Frontend/GameController.php 1 location

@@ 554-563 (lines=10) @@
551
        // buildView must be before sendMail because it adds the game template path to the templateStack
552
        $viewModel = $this->buildView($this->game);
553
    
554
        if ($this->getRequest()->isPost()) {
555
            $data = $this->getRequest()->getPost()->toArray();
556
            $form->setData($data);
557
            if ($form->isValid()) {
558
                $result = $this->getGameService()->sendShareMail($data, $this->game, $this->user, $lastEntry);
559
                if ($result) {
560
                    $statusMail = true;
561
                }
562
            }
563
        }
564
565
        $viewModel->setVariables(array(
566
            'statusMail'       => $statusMail,

src/PlaygroundGame/Controller/Frontend/PostVoteController.php 1 location

@@ 796-805 (lines=10) @@
793
        $form = $this->getServiceLocator()->get('playgroundgame_sharemail_form');
794
        $form->setAttribute('method', 'post');
795
    
796
        if ($this->getRequest()->isPost()) {
797
            $data = $this->getRequest()->getPost()->toArray();
798
            $form->setData($data);
799
            if ($form->isValid()) {
800
                $result = $this->getGameService()->sendShareMail($data, $this->game, $this->user, $lastEntry);
801
                if ($result) {
802
                    $statusMail = true;
803
                }
804
            }
805
        }
806
807
        $viewModel = $this->buildView($this->game);
808