brokencube/automatorm

View on GitHub

Showing 113 of 452 total issues

Avoid too many return statements within this method.
Open

            return true;
Severity: Major
Found in src/Orm/Data.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

                        return 'MODEL_DATA:UNEXPECTED_COLUMN_NAME: Property "'.$column.'" does not exist in the schema for this object ('.$model['table_name'].'), but "'.$column.'_id" does. You probably haven\'t set up the foreign key for this column!';
    Severity: Major
    Found in src/Exception/Model.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                      return 'ERROR_DURING_MASS_ASSIGNMENT: During ->assignData(), the following exception occurred: ' . $e->makeMessage($e->code, $e->data);
      Severity: Major
      Found in src/Exception/Model.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                        return "Unknown error code ({$code})";
        Severity: Major
        Found in src/Exception/Model.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                      return true;
          Severity: Major
          Found in src/Orm/Data.php - About 30 mins to fix

            Function factory has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                final public static function factory($where, $classOrTablename = null, $schema = null, array $options = [], $singleResult = false)
                {
                    // Figure out the base class and table we need based on current context
                    $schema = $schema ?: Schema::get(static::getNamespace());
                    list($class, $table) = $schema->guessContext($classOrTablename ?: get_called_class());
            Severity: Minor
            Found in src/Orm/Model.php - About 25 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 groupJoin12M has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                protected static function groupJoin12M(Collection $collection, $var, $where, $countOnly = false)
                {
                    $proto = $collection[0]->_data;
            
                    $table = $proto->model['one-to-many'][$var]['table'];
            Severity: Minor
            Found in src/Orm/Data.php - About 25 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 groupJoinM2M has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                protected static function groupJoinM2M(Collection $collection, $var, $where, $countOnly = false)
                {
                    $results = new Collection();
                    $proto = $collection[0]->_data;
            
            
            Severity: Minor
            Found in src/Orm/Data.php - About 25 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 __construct has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                protected function __construct($details, array $options = [], LoggerInterface $logger = null)
                {
                    $this->schemaGenerator = new SchemaGenerator($this);
                    $this->dataAccess = new DataAccess($this);
                    $this->logger = $logger;
            Severity: Minor
            Found in src/DataLayer/Database/Connection.php - About 25 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 __get has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                public function __get($parameter)
                {
                    $list = array();
                    
                    if ($this->container[0] instanceof Model and $this->container[0]->_data->externalKeyExists($parameter)) {
            Severity: Minor
            Found in src/Orm/Collection.php - About 25 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 __isset has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                public function __isset($var)
                {
                    // Is it already set in local array?
                    if (array_key_exists($var, $this->data)) {
                        return true;
            Severity: Minor
            Found in src/Orm/Data.php - About 25 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 setManyToManyData has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                protected function setManyToManyData($var, $value)
                {
                    $this->updateExternal[$var] = true;
                    
                    if (is_null($value)) {
            Severity: Minor
            Found in src/Orm/Data.php - About 25 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 commit has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

                public function commit()
                {
                    // Determine the type of SQL instruction to run
                    if ($this->delete) {
                        $mode = 'delete';
            Severity: Minor
            Found in src/Orm/Data.php - About 25 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