norse-blue/php-extensible-objects

View on GitHub

Showing 16 of 16 total issues

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

        string $message = '',
        int $code = 0,
        string $error_file = '',
        int $error_line = 0,
        ?Throwable $previous = null,
Severity: Minor
Found in src/Exceptions/MethodNotBindableException.php - About 35 mins to fix

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

        public static function registerExtensionMethod(
            string|array $names,
            string|callable $extension,
            ?bool $guard = null
        ): void;
    Severity: Minor
    Found in src/Contracts/Extensible.php and 1 other location - About 35 mins to fix
    src/Traits/ImplementsExtensible.php on lines 54..67

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

    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

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

        final public static function registerExtensionMethod(
            string|array $names,
            string|callable $extension,
            ?bool $guard = null
        ): void {
    Severity: Minor
    Found in src/Traits/ImplementsExtensible.php and 1 other location - About 35 mins to fix
    src/Contracts/Extensible.php on lines 35..39

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

    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

            if (! is_callable($extension)) {
                throw new ExtensionNotCallableException("The extension method '${extension}' is not callable.");
            }
    Severity: Minor
    Found in src/Resolvers/ExtensionResolver.php and 1 other location - About 30 mins to fix
    src/Guards/MethodDefinedInClassGuard.php on lines 29..31

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

    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

            if (! class_exists($class)) {
                throw new ReflectionException("The class '${class}' does not exist.");
            }
    Severity: Minor
    Found in src/Guards/MethodDefinedInClassGuard.php and 1 other location - About 30 mins to fix
    src/Resolvers/ExtensionResolver.php on lines 33..35

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

    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

    Expected an indentation at 8 instead of at 9.
    Open

             backupGlobals="false"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig

    Expected an indentation at 8 instead of at 9.
    Open

             convertWarningsToExceptions="true"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig

    Expected an indentation at 8 instead of at 9.
    Open

             bootstrap="vendor/autoload.php"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig

    Expected an indentation at 8 instead of at 9.
    Open

             backupStaticAttributes="false"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig

    Expected an indentation at 8 instead of at 9.
    Open

             convertErrorsToExceptions="true"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig

    Expected an indentation at 8 instead of at 9.
    Open

             convertNoticesToExceptions="true"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig

    Expected an indentation at 0 instead of at 1.
    Open

     If we want the extension method to be guarded (cannot be replaced or unregistered, thus is always available for the class) we need to pass `true` to the third parameter:
    Severity: Minor
    Found in docs/sections/usage.md by editorconfig

    Expected an indentation at 8 instead of at 9.
    Open

             colors="true"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig

    Expected an indentation at 8 instead of at 9.
    Open

             stopOnFailure="false"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig

    Expected an indentation at 0 instead of at 1.
    Open

     
    Severity: Minor
    Found in docs/sections/usage.md by editorconfig

    Expected an indentation at 8 instead of at 9.
    Open

             processIsolation="false"
    Severity: Minor
    Found in phpunit.xml.dist by editorconfig
    Severity
    Category
    Status
    Source
    Language