efureev/laravel-support-db

View on GitHub

Showing 10 of 10 total issues

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

class Blueprint extends BaseBlueprint
{
    public function bit(string $column, int $length): ColumnDefinition
    {
        return $this->addColumn('bit', $column, compact('length'));
Severity: Minor
Found in src/Schema/Postgres/Blueprint.php - About 3 hrs to fix

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

      function: (params, onError) => {
        params.tokens.filter(function filterToken(token) {
          return token.type === "heading_open";
        }).forEach(function forToken(token) {
          if (token.tag === "h2") {
    Severity: Minor
    Found in .github/workflows/lint/rules/changelog.js - 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

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

        protected static function whereIn(Grammar $grammar, Blueprint $blueprint, array $where = []): string
        {
            if (!empty($where['values'])) {
                return implode(
                    ' ',
    Severity: Major
    Found in src/Schema/Postgres/Compilers/WheresBuilder.php and 1 other location - About 1 hr to fix
    src/Schema/Postgres/Compilers/WheresBuilder.php on lines 63..76

    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 103.

    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

        protected static function whereNotIn(Grammar $grammar, Blueprint $blueprint, array $where = []): string
        {
            if (!empty($where['values'])) {
                return implode(
                    ' ',
    Severity: Major
    Found in src/Schema/Postgres/Compilers/WheresBuilder.php and 1 other location - About 1 hr to fix
    src/Schema/Postgres/Compilers/WheresBuilder.php on lines 48..61

    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 103.

    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

        public function compileCreateView(Blueprint $blueprint, Fluent $command): string
        {
            $materialize = $command->get('materialize') ? 'materialized' : '';
    
            return implode(
    Severity: Minor
    Found in src/Schema/Postgres/Grammar/GrammarViews.php and 1 other location - About 40 mins to fix
    src/Schema/Postgres/Grammar/GrammarViews.php on lines 31..48

    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 94.

    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

        public function compileCreateViewOrReplace(Blueprint $blueprint, Fluent $command): string
        {
            $materialize = $command->get('materialize') ? 'materialized' : '';
    
            return implode(
    Severity: Minor
    Found in src/Schema/Postgres/Grammar/GrammarViews.php and 1 other location - About 40 mins to fix
    src/Schema/Postgres/Grammar/GrammarViews.php on lines 12..29

    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 94.

    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

        public function partial($columns, ?string $index = null, ?string $algorithm = null): Fluent
        {
            $columns = (array)$columns;
    
            $index = $index ?: $this->createIndexName('partial', $columns);
    Severity: Minor
    Found in src/Schema/Postgres/Blueprint.php and 1 other location - About 40 mins to fix
    src/Schema/Postgres/Blueprint.php on lines 249..260

    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 93.

    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

        public function uniquePartial($columns, ?string $index = null, ?string $algorithm = null): Fluent
        {
            $columns = (array)$columns;
    
            $index = $index ?: $this->createIndexName('unique', $columns);
    Severity: Minor
    Found in src/Schema/Postgres/Blueprint.php and 1 other location - About 40 mins to fix
    src/Schema/Postgres/Blueprint.php on lines 269..280

    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 93.

    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

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

        protected function createConnection($driver, $connection, $database, $prefix = '', array $config = [])
    Severity: Minor
    Found in src/Schema/ConnectionFactory.php - About 35 mins to fix

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

          public function generateUUID(string $column = 'id', bool|callable|Expression|null $default = true): ColumnDefinition
          {
              $defCol = $this->addColumn('uuid', $column);
              if ($default === false) {
                  return $defCol;
      Severity: Minor
      Found in src/Schema/Postgres/Blueprint.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