Skip to content

No violations detected when there are.  #429

Open
@NoahNxT

Description

@NoahNxT
Q A
Library version 0.3.29
PHP version 8.3

Support Question

I made a config fully custom to the project we are working on, but for some reason even when there are violations it always gives me the NO VIOLATIONS DETECTED! result.

image

Hereby an example:

I created a rule for all my enums to be uniform named and be the type of an Enum:

    $classSet = ClassSet::fromDir(__DIR__ . '/Modules');

    $layeredArchitectureRules = Architecture::withComponents()
            ->component('Enum')->definedBy('Modules\*\App\Domains\*\Enums\*')    
            ->component('Trait')->definedBy('Modules\*\App\Domains\*\Traits\*')
            ->where('Enum')->mayDependOnComponents('Trait')
            ->rules();

    $rules[] = Rule::allClasses()
        ->that(new ResideInOneOfTheseNamespaces('Modules\*\App\Domains\*\Enums'))
        ->should(new HaveNameMatching('*Enum'))
        ->because('we want uniform naming');
    $rules[] = Rule::allClasses()
        ->that(new ResideInOneOfTheseNamespaces('Modules\*\App\Domains\*\Enums'))
        ->should(new IsEnum())
        ->because('Enums should be enums');

    $config->add($classSet, ...$rules, ...$layeredArchitectureRules);

I created a fake file in the folder:

image

The path of the file is:
/Modules/Hrm/App/Domains/Base/Enums/test.php

The command I'm running:
./vendor/bin/phparkitect check

Any Idea what is happening? Can't seem to find any other options anymore.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions