Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions ci/deptrac/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
deptrac:
paths:
- ../../fixtures
- ../../src
- ../../tests

Expand All @@ -16,18 +17,31 @@ deptrac:
collectors:
- type: class
value: \\MartinGeorgiev\\Utils\\.*
- name: Tests
- name: Fixtures
collectors:
- type: class
value: \\Tests\\MartinGeorgiev\\.*
value: \\Fixtures\\MartinGeorgiev\\.*
- name: Integration Tests
collectors:
- type: class
value: \\Tests\\Integration\\MartinGeorgiev\\.*
- name: Unit Tests
collectors:
- type: class
value: \\Tests\\Unit\\MartinGeorgiev\\.*

ruleset:
Functions:
- Utils
Types:
- Utils
Utils: ~
Tests:
Integration Tests:
- Fixtures
- Functions
- Types
Unit Tests:
- Fixtures
- Functions
- Types
- Utils
1 change: 1 addition & 0 deletions ci/php-cs-fixer/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

$finder = Finder::create()
->in($basePath.'ci')
->in($basePath.'fixtures')
->in($basePath.'src')
->in($basePath.'tests');

Expand Down
1 change: 1 addition & 0 deletions ci/phpstan/config.neon
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ parameters:
level: max
paths:
- ../../ci
- ../../fixtures
- ../../src
- ../../tests

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ class ContainsDecimals extends Entity

#[ORM\Column(type: Types::DECIMAL)]
public float $decimal3;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@

namespace Fixtures\MartinGeorgiev\Doctrine\Function;

use Doctrine\ORM\Query\AST\Literal;
use Doctrine\ORM\Query\AST\Node;
use MartinGeorgiev\Doctrine\ORM\Query\AST\Functions\BaseVariadicFunction;
use MartinGeorgiev\Doctrine\ORM\Query\AST\Functions\Exception\InvalidArgumentForVariadicFunctionException;
use MartinGeorgiev\Doctrine\ORM\Query\AST\Functions\Traits\BooleanValidationTrait;

/**
Expand Down
Loading