Showing 20 of 20 total issues

Function processUp has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
Open

    function processUp()
    {
        foreach ($this->knownModels as $modelKey => $knownModel) {
            foreach ($knownModel as $targetTable => $columns) {
                $constraints = [];
Severity: Minor
Found in Migration/Migration.php - About 4 hrs 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 waitForSingleInput has 87 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function waitForSingleInput($closure)
    {
        if(!function_exists('readline_callback_handler_install')){
            $this->waitForInput($closure);
            return;
Severity: Major
Found in Cli/Cli.php - About 3 hrs to fix

    Function waitForSingleInput has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

        function waitForSingleInput($closure)
        {
            if(!function_exists('readline_callback_handler_install')){
                $this->waitForInput($closure);
                return;
    Severity: Minor
    Found in Cli/Cli.php - About 3 hrs 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 init has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        function init()
        {
            if (!$this->validate()) {
                return;
            }
    Severity: Minor
    Found in Creation/Test.php - About 2 hrs 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 init has 52 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function init()
        {
            if (!$this->validate()) {
                return;
            }
    Severity: Major
    Found in Creation/Test.php - About 2 hrs to fix

      Method run has 41 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function run()
          {
      
              if(array_search('v', $this->flags )){
                  $this->versionHelper->printCliVersion();
      Severity: Minor
      Found in Cli/Cli.php - About 1 hr to fix

        Method processUp has 37 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            function processUp()
            {
                foreach ($this->knownModels as $modelKey => $knownModel) {
                    foreach ($knownModel as $targetTable => $columns) {
                        $constraints = [];
        Severity: Minor
        Found in Migration/Migration.php - About 1 hr to fix

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

              function init()
              {
                  $helper = new FileHelper($this->cli);
                  echo "downloading...\n";
                  // download zip
          Severity: Minor
          Found in Creation/App.php - About 1 hr to fix

            Function run has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                function run()
                {
            
                    if(array_search('v', $this->flags )){
                        $this->versionHelper->printCliVersion();
            Severity: Minor
            Found in Cli/Cli.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 init has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
            Open

                function init()
                {
                    $this->parseFlags();
                    if (!isset($this->cli->arguments[2])) {
                        $this->cli->printLn('Malformed command. Expected format:', 'red');
            Severity: Minor
            Found in Creation/Component.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 writeCtrl has 26 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                function writeCtrl()
                {
                    $template = $this->template->readTemplate('route.php');
                    if (!$template) {
                        if(!$this->frame){
            Severity: Minor
            Found in Creation/Component.php - About 1 hr to fix

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

                  function getMethods()
                  {
                      $className = 'Neoan3\\';
                      if($this->cli->versionHelper->appMainVersion < 3){
                          if($this->cli->arguments[2] == 'component'){
              Severity: Minor
              Found in Creation/Test.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

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                      if($this->cli->versionHelper->appMainVersion < 3){
                          $this->fileHelper->writeFile($this->modelFolder . Ops::toPascalCase($this->cli->arguments[2]) . '.model.php', $content);
                      } else {
                          $this->fileHelper->writeFile($this->modelFolder . Ops::toPascalCase($this->cli->arguments[2]) . 'Model.php', $content);
                      }
              Severity: Minor
              Found in Helper/TemplateHelper.php and 1 other location - About 45 mins to fix
              Helper/TemplateHelper.php on lines 42..46

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 96.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

              Similar blocks of code found in 2 locations. Consider refactoring.
              Open

                      if($this->cli->versionHelper->appMainVersion < 3){
                          $this->fileHelper->writeFile($this->componentFolder . Ops::toPascalCase($this->cli->arguments[2]) . '.ctrl.php', $content);
                      } else {
                          $this->fileHelper->writeFile($this->componentFolder . Ops::toPascalCase($this->cli->arguments[2]) . 'Controller.php', $content);
                      }
              Severity: Minor
              Found in Helper/TemplateHelper.php and 1 other location - About 45 mins to fix
              Helper/TemplateHelper.php on lines 56..60

              Duplicated Code

              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

              Tuning

              This issue has a mass of 96.

              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

              Refactorings

              Further Reading

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

                  function checkProperFormat(): bool
                  {
                      $ok = true;
                      if (!isset($this->cli->arguments[2])) {
                          $ok = false;
              Severity: Minor
              Found in Migration/Migration.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 createNew has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  function createNew($targetStructure = [])
                  {
                      $this->cli->printLn('How do you want to call these credentials?');
                      $this->cli->waitForInput(function ($input) {
                          $this->credentials[$input] = [];
              Severity: Minor
              Found in Helper/CredentialHelper.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 parseCommand has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  function parseCommand()
                  {
                      if(!isset($this->cli->arguments[1]) || !isset($this->cli->arguments[2])){
                          $this->cli->printLn('Malformed command', 'red');
                          $this->cli->printLn('neoan3 set <variable> <value>', 'yellow');
              Severity: Minor
              Found in Set/Set.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 processDown has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  function processDown()
                  {
                      foreach ($this->knownModels as $modelKey => $knownModel) {
                          $migrate = [];
                          foreach ($this->knownTables as $tableKey => $knownTable) {
              Severity: Minor
              Found in Migration/Migration.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 generateFiles has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  function generateFiles()
                  {
                      $this->fileHelper->createDirectory($this->folder);
                      switch ($this->type) {
                          case 'route':
              Severity: Minor
              Found in Creation/Component.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 writeCtrl has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  function writeCtrl()
                  {
                      $template = $this->template->readTemplate('route.php');
                      if (!$template) {
                          if(!$this->frame){
              Severity: Minor
              Found in Creation/Component.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