laravel/framework

View on GitHub
src/Illuminate/Database/Schema/Blueprint.php

Summary

Maintainability
F
4 days
Test Coverage

Blueprint has 126 functions (exceeds 20 allowed). Consider refactoring.
Open

class Blueprint
{
    use Macroable;

    /**
Severity: Major
Found in src/Illuminate/Database/Schema/Blueprint.php - About 2 days to fix

    File Blueprint.php has 676 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace Illuminate\Database\Schema;
    
    use Closure;
    Severity: Major
    Found in src/Illuminate/Database/Schema/Blueprint.php - About 1 day to fix

      Function addFluentIndexes has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function addFluentIndexes(Connection $connection, Grammar $grammar)
          {
              foreach ($this->columns as $column) {
                  foreach (['primary', 'unique', 'index', 'fulltext', 'fullText', 'spatialIndex'] as $index) {
                      // If the column is supposed to be changed to an auto increment column and
      Severity: Minor
      Found in src/Illuminate/Database/Schema/Blueprint.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

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

          public function toSql(Connection $connection, Grammar $grammar)
          {
              $this->addImpliedCommands($connection, $grammar);
      
              $statements = [];
      Severity: Minor
      Found in src/Illuminate/Database/Schema/Blueprint.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

      There are no issues that match your filters.

      Category
      Status