BKWLD/laravel-pug

View on GitHub
src/PugBladeCompiler.php

Summary

Maintainability
A
35 mins
Test Coverage

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

        array $pugTarget,
        Filesystem $files,
        array $config,
        $defaultCachePath = null,
        $compiler = null
Severity: Minor
Found in src/PugBladeCompiler.php - About 35 mins to fix

    Avoid using static access to class '\Illuminate\Support\Facades\Blade' in method 'enableBladeDirectives'.
    Open

            $blade = Blade::getFacadeRoot();
    Severity: Minor
    Found in src/PugBladeCompiler.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\Facades\Blade' in method 'compile'.
    Open

            $app = Blade::getFacadeApplication();
    Severity: Minor
    Found in src/PugBladeCompiler.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

    There are no issues that match your filters.

    Category
    Status