VSVverkeerskunde/gvq-api

View on GitHub
src/Quiz/Models/Quiz.php

Summary

Maintainability
A
3 hrs
Test Coverage

Method guardChannel has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function guardChannel(QuizChannel $channel, ?Company $company, ?Partner $partner, ?Team $team): void
    {
        switch ($channel->toNative()) {
            case QuizChannel::INDIVIDUAL:
            case QuizChannel::LEAGUE:
Severity: Minor
Found in src/Quiz/Models/Quiz.php - About 1 hr to fix

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

            UuidInterface $id,
            QuizChannel $channel,
            ?Company $company,
            ?Partner $partner,
            ?Team $team,
    Severity: Major
    Found in src/Quiz/Models/Quiz.php - About 1 hr to fix

      Function guardChannel has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          private function guardChannel(QuizChannel $channel, ?Company $company, ?Partner $partner, ?Team $team): void
          {
              switch ($channel->toNative()) {
                  case QuizChannel::INDIVIDUAL:
                  case QuizChannel::LEAGUE:
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php - About 45 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

      This function has 9 parameters, which is greater than the 7 authorized.
      Open

          public function __construct(
              UuidInterface $id,
              QuizChannel $channel,
              ?Company $company,
              ?Partner $partner,
      Severity: Major
      Found in src/Quiz/Models/Quiz.php by sonar-php

      A long parameter list can indicate that a new structure should be created to wrap the numerous parameters or that the function is doing too many things.

      Noncompliant Code Example

      With a maximum number of 4 parameters:

      function doSomething($param1, $param2, $param3, $param4, $param5) {
      ...
      }
      

      Compliant Solution

      function doSomething($param1, $param2, $param3, $param4) {
      ...
      }
      

      Missing class import via use statement (line '222', column '31').
      Open

                          throw new \InvalidArgumentException('Quiz of channel cup needs team parameter, null given.');
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '281', column '23').
      Open

                  throw new \InvalidArgumentException(
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '238', column '31').
      Open

                          throw new \InvalidArgumentException('Quiz of channel company needs company parameter, null given.');
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '251', column '23').
      Open

                  throw new \InvalidArgumentException(
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '231', column '31').
      Open

                          throw new \InvalidArgumentException('Quiz of channel partner needs partner parameter, null given.');
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '268', column '23').
      Open

                  throw new \InvalidArgumentException(
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Add a "case default" clause to this "switch" statement.
      Open

              switch ($channel->toNative()) {
      Severity: Critical
      Found in src/Quiz/Models/Quiz.php by sonar-php

      The requirement for a final case default clause is defensive programming. The clause should either take appropriate action, or contain a suitable comment as to why no action is taken. Even when the switch covers all current values of an enum, a default case should still be used because there is no guarantee that the enum won't be extended.

      Noncompliant Code Example

      switch ($param) {  //missing default clause
        case 0:
          do_something();
          break;
        case 1:
          do_something_else();
          break;
      }
      
      switch ($param) {
        default: // default clause should be the last one
          error();
          break;
        case 0:
          do_something();
          break;
        case 1:
          do_something_else();
          break;
      }
      

      Compliant Solution

      switch ($param) {
        case 0:
          do_something();
          break;
        case 1:
          do_something_else();
          break;
        default:
          error();
          break;
      }
      

      See

      • MISRA C:2004, 15.0 - The MISRA C switch syntax shall be used.
      • MISRA C:2004, 15.3 - The final clause of a switch statement shall be the default clause
      • MISRA C++:2008, 6-4-3 - A switch statement shall be a well-formed switch statement.
      • MISRA C++:2008, 6-4-6 - The final clause of a switch statement shall be the default-clause
      • MISRA C:2012, 16.1 - All switch statements shall be well-formed
      • MISRA C:2012, 16.4 - Every switch statement shall have a default label
      • MISRA C:2012, 16.5 - A default label shall appear as either the first or the last switch label of a switch statement
      • MITRE, CWE-478 - Missing Default Case in Switch Statement
      • CERT, MSC01-C. - Strive for logical completeness
      • CERT, MSC01-CPP. - Strive for logical completeness

      Define a constant instead of duplicating this literal "Quiz of channel " 3 times.
      Open

                      'Quiz of channel '.
      Severity: Critical
      Found in src/Quiz/Models/Quiz.php by sonar-php

      Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

      On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

      Noncompliant Code Example

      With the default threshold of 3:

      function run() {
        prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
        execute('action1');
        release('action1');
      }
      

      Compliant Solution

      ACTION_1 = 'action1';
      
      function run() {
        prepare(ACTION_1);
        execute(ACTION_1);
        release(ACTION_1);
      }
      

      Exceptions

      To prevent generating some false-positives, literals having less than 5 characters are excluded.

      Define a constant instead of duplicating this literal " given." 3 times.
      Open

                      ' given.'
      Severity: Critical
      Found in src/Quiz/Models/Quiz.php by sonar-php

      Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

      On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

      Noncompliant Code Example

      With the default threshold of 3:

      function run() {
        prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
        execute('action1');
        release('action1');
      }
      

      Compliant Solution

      ACTION_1 = 'action1';
      
      function run() {
        prepare(ACTION_1);
        execute(ACTION_1);
        release(ACTION_1);
      }
      

      Exceptions

      To prevent generating some false-positives, literals having less than 5 characters are excluded.

      Avoid variables with short names like $c. Configured minimum length is 3.
      Open

              $c = clone $this;
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      ShortVariable

      Since: 0.2

      Detects when a field, local, or parameter has a very short name.

      Example

      class Something {
          private $q = 15; // VIOLATION - Field
          public static function main( array $as ) { // VIOLATION - Formal
              $r = 20 + $this->q; // VIOLATION - Local
              for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                  $r += $this->q;
              }
          }
      }

      Source https://phpmd.org/rules/naming.html#shortvariable

      Avoid variables with short names like $id. Configured minimum length is 3.
      Open

          private $id;
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      ShortVariable

      Since: 0.2

      Detects when a field, local, or parameter has a very short name.

      Example

      class Something {
          private $q = 15; // VIOLATION - Field
          public static function main( array $as ) { // VIOLATION - Formal
              $r = 20 + $this->q; // VIOLATION - Local
              for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                  $r += $this->q;
              }
          }
      }

      Source https://phpmd.org/rules/naming.html#shortvariable

      Avoid variables with short names like $id. Configured minimum length is 3.
      Open

              UuidInterface $id,
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      ShortVariable

      Since: 0.2

      Detects when a field, local, or parameter has a very short name.

      Example

      class Something {
          private $q = 15; // VIOLATION - Field
          public static function main( array $as ) { // VIOLATION - Formal
              $r = 20 + $this->q; // VIOLATION - Local
              for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                  $r += $this->q;
              }
          }
      }

      Source https://phpmd.org/rules/naming.html#shortvariable

      Avoid variables with short names like $c. Configured minimum length is 3.
      Open

              $c = clone $this;
      Severity: Minor
      Found in src/Quiz/Models/Quiz.php by phpmd

      ShortVariable

      Since: 0.2

      Detects when a field, local, or parameter has a very short name.

      Example

      class Something {
          private $q = 15; // VIOLATION - Field
          public static function main( array $as ) { // VIOLATION - Formal
              $r = 20 + $this->q; // VIOLATION - Local
              for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                  $r += $this->q;
              }
          }
      }

      Source https://phpmd.org/rules/naming.html#shortvariable

      There are no issues that match your filters.

      Category
      Status