BKWLD/laravel-pug

View on GitHub
src/ServiceProvider.php

Summary

Maintainability
A
1 hr
Test Coverage

Method getPugEngine has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function getPugEngine(): Pug
    {
        $config = $this->getConfig();

        if (!isset($config['extensions']) && $this->app['view']) {
Severity: Minor
Found in src/ServiceProvider.php - About 1 hr to fix

    Avoid using static access to class '\Phug\Component\ComponentExtension' in method 'getPugEngine'.
    Open

                ComponentExtension::enable($pug);
    Severity: Minor
    Found in src/ServiceProvider.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