aol/transformers

View on GitHub

Showing 11 of 21 total issues

Function escapeMongoKeys has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    public function escapeMongoKeys($data)
    {
        if (is_array($data)) {
            foreach($data as $key => $value) {
                if (is_string($key)) {
Severity: Minor
Found in lib/Utilities/MongoDBTrait.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

Function escapeMongoKeys has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    public function escapeMongoKeys($data)
    {
        if (is_array($data)) {
            foreach($data as $key => $value) {
                if (is_string($key)) {
Severity: Minor
Found in lib/Utilities/MongoTrait.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

Function unescapeMongoKeys has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    public function unescapeMongoKeys($data)
    {
        if (is_array($data)) {
            foreach($data as $key => $value) {
                if (is_string($key)) {
Severity: Minor
Found in lib/Utilities/MongoTrait.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

Function unescapeMongoKeys has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    public function unescapeMongoKeys($data)
    {
        if (is_array($data)) {
            foreach($data as $key => $value) {
                if (is_string($key)) {
Severity: Minor
Found in lib/Utilities/MongoDBTrait.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 to has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function to($env, $data, $key = null, $array = false)
    {
        $this->validateEnvironment($env);

        if (!is_array($data) && empty($data) && $data !== false) {
Severity: Minor
Found in lib/Transformer.php - About 1 hr to fix

    Function to has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        public function to($env, $data, $key = null, $array = false)
        {
            $this->validateEnvironment($env);
    
            if (!is_array($data) && empty($data) && $data !== false) {
    Severity: Minor
    Found in lib/Transformer.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 define has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

            $app_name,
            $ext_name,
            callable $app_func = null,
            callable $ext_func = null,
            $app_args = [],
    Severity: Minor
    Found in lib/Transformer.php - About 45 mins to fix

      Method define has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

              $app_name,
              $ext_name,
              callable $app_func = null,
              callable $ext_func = null,
              $app_args = [],
      Severity: Minor
      Found in lib/AbstractDefinitionTrait.php - About 45 mins to fix

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

            protected function getMongoIdFromDate($date)
            {
                static $inc = 0;
                if ($date instanceof \DateTime) {
                    $timestamp = $date->getTimestamp();
        Severity: Minor
        Found in lib/Utilities/MongoTrait.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 getMongoIdFromDate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function getMongoIdFromDate($date)
            {
                static $inc = 0;
                if ($date instanceof \DateTime) {
                    $timestamp = $date->getTimestamp();
        Severity: Minor
        Found in lib/Utilities/MongoDBTrait.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

        Avoid too many return statements within this method.
        Open

                return $ret;
        Severity: Major
        Found in lib/Transformer.php - About 30 mins to fix
          Severity
          Category
          Status
          Source
          Language