badgeteam/Hatchery

View on GitHub
app/Models/Project.php

Summary

Maintainability
C
1 day
Test Coverage

Project has 30 functions (exceeds 20 allowed). Consider refactoring.
Open

class Project extends Model
{
    use SoftDeletes;
    use HasFactory;

Severity: Minor
Found in app/Models/Project.php - About 3 hrs to fix

    The class Project has 12 public methods. Consider refactoring Project to keep number of public methods under 10.
    Open

    class Project extends Model
    {
        use SoftDeletes;
        use HasFactory;
    
    
    Severity: Minor
    Found in app/Models/Project.php by phpmd

    TooManyPublicMethods

    Since: 0.1

    A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

    By default it ignores methods starting with 'get' or 'set'.

    Example

    Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

    The class Project has an overall complexity of 59 which is very high. The configured complexity threshold is 50.
    Open

    class Project extends Model
    {
        use SoftDeletes;
        use HasFactory;
    
    
    Severity: Minor
    Found in app/Models/Project.php by phpmd

    File Project.php has 300 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    declare(strict_types=1);
    
    namespace App\Models;
    Severity: Minor
    Found in app/Models/Project.php - About 3 hrs to fix

      Method boot has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function boot(): void
          {
              parent::boot();
      
              static::creating(
      Severity: Minor
      Found in app/Models/Project.php - About 1 hr to fix

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

            public function getScoreAttribute(): float
            {
                if ($this->votes === null || $this->votes->count() === 0) {
                    return 0;
                }
        Severity: Minor
        Found in app/Models/Project.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 getDescriptionAttribute has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getDescriptionAttribute(): ?string
            {
                $full = true;
                $request = request();
                if ($request->has('description') && $request->description === false) {
        Severity: Minor
        Found in app/Models/Project.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

        Class "Project" has 30 methods, which is greater than 20 authorized. Split it into smaller classes.
        Open

        class Project extends Model
        Severity: Major
        Found in app/Models/Project.php by sonar-php

        A class that grows too much tends to aggregate too many responsibilities and inevitably becomes harder to understand and therefore to maintain. Above a specific threshold, it is strongly advised to refactor the class into smaller ones which focus on well defined topics.

        The class Project has a coupling between objects value of 18. Consider to reduce the number of dependencies under 13.
        Open

        class Project extends Model
        {
            use SoftDeletes;
            use HasFactory;
        
        
        Severity: Minor
        Found in app/Models/Project.php by phpmd

        CouplingBetweenObjects

        Since: 1.1.0

        A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

        Example

        class Foo {
            /**
             * @var \foo\bar\X
             */
            private $x = null;
        
            /**
             * @var \foo\bar\Y
             */
            private $y = null;
        
            /**
             * @var \foo\bar\Z
             */
            private $z = null;
        
            public function setFoo(\Foo $foo) {}
            public function setBar(\Bar $bar) {}
            public function setBaz(\Baz $baz) {}
        
            /**
             * @return \SplObjectStorage
             * @throws \OutOfRangeException
             * @throws \InvalidArgumentException
             * @throws \ErrorException
             */
            public function process(\Iterator $it) {}
        
            // ...
        }

        Source https://phpmd.org/rules/design.html#couplingbetweenobjects

        Missing class import via use statement (line '214', column '31').
        Open

                            throw new \Exception('reserved name');
        Severity: Minor
        Found in app/Models/Project.php by phpmd

        MissingImport

        Since: 2.7.0

        Importing all external classes in a file through use statements makes them clearly visible.

        Example

        function make() {
            return new \stdClass();
        }

        Source http://phpmd.org/rules/cleancode.html#MissingImport

        Avoid using static access to class '\App\Support\Helpers' in method 'getSizeOfContentFormattedAttribute'.
        Open

                return Helpers::formatBytes((int) $this->getSizeOfContentAttribute());
        Severity: Minor
        Found in app/Models/Project.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Avoid using static access to class '\Illuminate\Support\Str' in method 'boot'.
        Open

                        $project->slug = Str::slug($project->name, '_');
        Severity: Minor
        Found in app/Models/Project.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Avoid using static access to class '\App\Support\Helpers' in method 'getSizeOfZipFormattedAttribute'.
        Open

                return Helpers::formatBytes((int) $this->getSizeOfZipAttribute());
        Severity: Minor
        Found in app/Models/Project.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Avoid using static access to class '\Illuminate\Mail\Markdown' in method 'getDescriptionHtmlAttribute'.
        Open

                    return Markdown::parse($this->description);
        Severity: Minor
        Found in app/Models/Project.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Avoid using static access to class '\Illuminate\Support\Str' in method 'getDescriptionAttribute'.
        Open

                    return Str::limit((string) $file->content, 16);
        Severity: Minor
        Found in app/Models/Project.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Define and throw a dedicated exception instead of using a generic one.
        Open

                            throw new \Exception('reserved name');
        Severity: Major
        Found in app/Models/Project.php by sonar-php

        If you throw a general exception type, such as ErrorException, RuntimeException, or Exception in a library or framework, it forces consumers to catch all exceptions, including unknown exceptions that they do not know how to handle.

        Instead, either throw a subtype that already exists in the Standard PHP Library, or create your own type that derives from Exception.

        Noncompliant Code Example

        throw new Exception();  // Noncompliant
        

        Compliant Solution

        throw new InvalidArgumentException();
        // or
        throw new UnexpectedValueException();
        

        See

        There are no issues that match your filters.

        Category
        Status