abienvenu/Kyela

View on GitHub

Showing 16 of 21 total issues

Poll has 25 functions (exceeds 20 allowed). Consider refactoring.
Open

class Poll extends Entity
{
    /**
     * @var integer
     *
Severity: Minor
Found in Entity/Poll.php - About 2 hrs to fix

    Method loadVolley has 61 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function loadVolley(ObjectManager $manager)
        {
            $names = ['Jean', 'Marilou', 'Mehdi', 'Élodie', 'Cécile', 'Vincent', 'Patricia', 'Cyril', 'Lucie'];
            $events = [
                ['name' => 'Entraînement', 'date' => new \DateTime('+10 year'), 'time' => new \DateTime('20:30')],
    Severity: Major
    Found in DataFixtures/ORM/LoadExamplePolls.php - About 2 hrs to fix

      Method resetPoll has 52 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function resetPoll(ObjectManager $manager, $url, $title, $headLines, $bottomLines, $names, $events, $choices, $participations)
          {
              $entity = $manager->getRepository('KyelaBundle:Poll')->findOneByUrl($url);
              if ($entity) {
                  $manager->remove($entity);
      Severity: Major
      Found in DataFixtures/ORM/LoadExamplePolls.php - About 2 hrs to fix

        Method loadConcert has 38 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function loadConcert(ObjectManager $manager)
            {
                $names = ['Aretha', 'Jimmy', 'Miles', 'John', 'Paul'];
                $events = [
                    ['name' => 'Répétition', 'place' => 'Studio', 'date' => new \DateTime('+10 year'), 'time' => new \DateTime('15:00')],
        Severity: Minor
        Found in DataFixtures/ORM/LoadExamplePolls.php - About 1 hr to fix

          Method loadHolidays has 36 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              protected function loadHolidays(ObjectManager $manager)
              {
                  $names = ['Jean', 'Lisa', 'Étienne', 'Martine', 'Lilou'];
                  $events = [
                      ['name' => 'Vacances de février'],
          Severity: Minor
          Found in DataFixtures/ORM/LoadExamplePolls.php - About 1 hr to fix

            Function doNewAction has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
            Open

                protected function doNewAction($formType, Entity $entity, Request $request, $successMessage = null, $extra = [])
                {
                    $form = $this->doCreateCreateForm($formType, $entity, $request->get('_route'), $extra);
                    if ($request->isMethod('POST'))
                    {
            Severity: Minor
            Found in Controller/CRUDController.php - About 1 hr to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Method unlockAction has 35 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function unlockAction(Request $request)
                {
                    $poll = (new Poll)->setTitle("dummy")->setUrl("dummy");
                    $form = $this->createForm(LockPollType::class, $poll, [
                        'method' => 'PUT',
            Severity: Minor
            Found in Controller/PollController.php - About 1 hr to fix

              Method lockAction has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function lockAction(Request $request)
                  {
                      $form = $this->createForm(LockPollType::class, $this->poll, [
                          'method' => 'PUT',
                      ]);
              Severity: Minor
              Found in Controller/PollController.php - About 1 hr to fix

                Method doNewAction has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    protected function doNewAction($formType, Entity $entity, Request $request, $successMessage = null, $extra = [])
                    {
                        $form = $this->doCreateCreateForm($formType, $entity, $request->get('_route'), $extra);
                        if ($request->isMethod('POST'))
                        {
                Severity: Minor
                Found in Controller/CRUDController.php - About 1 hr to fix

                  Method resetPoll has 9 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      protected function resetPoll(ObjectManager $manager, $url, $title, $headLines, $bottomLines, $names, $events, $choices, $participations)
                  Severity: Major
                  Found in DataFixtures/ORM/LoadExamplePolls.php - About 1 hr to fix

                    Method loadPicnic has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        protected function loadPicnic(ObjectManager $manager)
                        {
                            $names = ['Élise', 'Jules', 'Marie', 'Romain', 'Margaux'];
                            $events = [
                                ['name' => 'Date 1', 'place' => 'Central Park', 'date' => new \DateTime('+10 year'), 'time' => new \DateTime('12:00')],
                    Severity: Minor
                    Found in DataFixtures/ORM/LoadExamplePolls.php - About 1 hr to fix

                      Method doEditAction has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          protected function doEditAction($formType, $id, Request $request, $extra = [])
                          {
                              $em = $this->getDoctrine()->getManager();
                      
                              /** @var Entity $entity */
                      Severity: Minor
                      Found in Controller/CRUDController.php - About 1 hr to fix

                        Function unlockAction has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function unlockAction(Request $request)
                            {
                                $poll = (new Poll)->setTitle("dummy")->setUrl("dummy");
                                $form = $this->createForm(LockPollType::class, $poll, [
                                    'method' => 'PUT',
                        Severity: Minor
                        Found in Controller/PollController.php - About 55 mins to fix

                        Cognitive Complexity

                        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                        A method's cognitive complexity is based on a few simple rules:

                        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                        • Code is considered more complex for each "break in the linear flow of the code"
                        • Code is considered more complex when "flow breaking structures are nested"

                        Further reading

                        Method doNewAction has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            protected function doNewAction($formType, Entity $entity, Request $request, $successMessage = null, $extra = [])
                        Severity: Minor
                        Found in Controller/CRUDController.php - About 35 mins to fix

                          Function lockAction has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                          Open

                              public function lockAction(Request $request)
                              {
                                  $form = $this->createForm(LockPollType::class, $this->poll, [
                                      'method' => 'PUT',
                                  ]);
                          Severity: Minor
                          Found in Controller/PollController.php - About 35 mins to fix

                          Cognitive Complexity

                          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                          A method's cognitive complexity is based on a few simple rules:

                          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                          • Code is considered more complex for each "break in the linear flow of the code"
                          • Code is considered more complex when "flow breaking structures are nested"

                          Further reading

                          Function doEditAction has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                          Open

                              protected function doEditAction($formType, $id, Request $request, $extra = [])
                              {
                                  $em = $this->getDoctrine()->getManager();
                          
                                  /** @var Entity $entity */
                          Severity: Minor
                          Found in Controller/CRUDController.php - About 35 mins to fix

                          Cognitive Complexity

                          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                          A method's cognitive complexity is based on a few simple rules:

                          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                          • Code is considered more complex for each "break in the linear flow of the code"
                          • Code is considered more complex when "flow breaking structures are nested"

                          Further reading

                          Severity
                          Category
                          Status
                          Source
                          Language