Showing 9 of 17 total issues

Method addRelated has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function addRelated(Entity $self, array $entities, EntityManager $entityManager)
    {
        if (empty($entities)) {
            return;
        }
Severity: Minor
Found in src/Relation/ManyToMany.php - About 1 hr to fix

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

        public function forceNamingScheme($name, $namingScheme)
        {
            $words = explode('_', preg_replace(
                '/([a-z0-9])([A-Z])/',
                '$1_$2',
    Severity: Minor
    Found in src/Namer.php - About 1 hr to fix

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

          public function deleteRelated(Entity $self, array $entities, EntityManager $entityManager)
          {
              if (empty($entities)) {
                  return;
              }
      Severity: Minor
      Found in src/Relation/ManyToMany.php - About 1 hr to fix

        Function addRelated has a Cognitive Complexity of 15 (exceeds 9 allowed). Consider refactoring.
        Open

            public function addRelated(Entity $self, array $entities, EntityManager $entityManager)
            {
                if (empty($entities)) {
                    return;
                }
        Severity: Minor
        Found in src/Relation/ManyToMany.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 ormAllowUpdate has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function ormAllowUpdate(m\MockInterface $entity, $changingData = [], $updatedData = [])
            {
                $expectation = $entity->shouldReceive('save');
        
                if ($expectation instanceof m\CompositeExpectation) {
        Severity: Minor
        Found in src/Testing/MocksEntityManager.php - About 1 hr to fix

          Function deleteRelated has a Cognitive Complexity of 12 (exceeds 9 allowed). Consider refactoring.
          Open

              public function deleteRelated(Entity $self, array $entities, EntityManager $entityManager)
              {
                  if (empty($entities)) {
                      return;
                  }
          Severity: Minor
          Found in src/Relation/ManyToMany.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

          Function syncInserted has a Cognitive Complexity of 12 (exceeds 9 allowed). Consider refactoring.
          Open

              protected function syncInserted(Entity ...$entities)
              {
                  $entity = reset($entities);
                  $vars = $entity::getPrimaryKeyVars();
                  $cols = array_map([$entity, 'getColumnName'], $vars);
          Severity: Minor
          Found in src/Dbal/Dbal.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

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

              public function __construct($class, array $reference, $opponent, $table, array $filters = [])
          Severity: Minor
          Found in src/Relation/ManyToMany.php - About 35 mins to fix

            Avoid too many return statements within this method.
            Open

                    return true;
            Severity: Major
            Found in src/Dbal/Column.php - About 30 mins to fix
              Severity
              Category
              Status
              Source
              Language