File tree Expand file tree Collapse file tree 5 files changed +20
-7
lines changed
fixtures/MartinGeorgiev/Doctrine Expand file tree Collapse file tree 5 files changed +20
-7
lines changed Original file line number Diff line number Diff line change 1
1
deptrac :
2
2
paths :
3
+ - ../../fixtures
3
4
- ../../src
4
5
- ../../tests
5
6
@@ -16,18 +17,31 @@ deptrac:
16
17
collectors :
17
18
- type : class
18
19
value : \\MartinGeorgiev\\Utils\\.*
19
- - name : Tests
20
+ - name : Fixtures
20
21
collectors :
21
22
- type : class
22
- value : \\Tests\\MartinGeorgiev\\.*
23
+ value : \\Fixtures\\MartinGeorgiev\\.*
24
+ - name : Integration Tests
25
+ collectors :
26
+ - type : class
27
+ value : \\Tests\\Integration\\MartinGeorgiev\\.*
28
+ - name : Unit Tests
29
+ collectors :
30
+ - type : class
31
+ value : \\Tests\\Unit\\MartinGeorgiev\\.*
23
32
24
33
ruleset :
25
34
Functions :
26
35
- Utils
27
36
Types :
28
37
- Utils
29
38
Utils : ~
30
- Tests :
39
+ Integration Tests :
40
+ - Fixtures
41
+ - Functions
42
+ - Types
43
+ Unit Tests :
44
+ - Fixtures
31
45
- Functions
32
46
- Types
33
47
- Utils
Original file line number Diff line number Diff line change 9
9
10
10
$ finder = Finder::create ()
11
11
->in ($ basePath .'ci ' )
12
+ ->in ($ basePath .'fixtures ' )
12
13
->in ($ basePath .'src ' )
13
14
->in ($ basePath .'tests ' );
14
15
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ parameters:
12
12
level : max
13
13
paths :
14
14
- ../../ci
15
+ - ../../fixtures
15
16
- ../../src
16
17
- ../../tests
17
18
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ class ContainsDecimals extends Entity
18
18
19
19
#[ORM \Column(type: Types::DECIMAL )]
20
20
public float $ decimal3 ;
21
- }
21
+ }
Original file line number Diff line number Diff line change 4
4
5
5
namespace Fixtures \MartinGeorgiev \Doctrine \Function ;
6
6
7
- use Doctrine \ORM \Query \AST \Literal ;
8
- use Doctrine \ORM \Query \AST \Node ;
9
7
use MartinGeorgiev \Doctrine \ORM \Query \AST \Functions \BaseVariadicFunction ;
10
- use MartinGeorgiev \Doctrine \ORM \Query \AST \Functions \Exception \InvalidArgumentForVariadicFunctionException ;
11
8
use MartinGeorgiev \Doctrine \ORM \Query \AST \Functions \Traits \BooleanValidationTrait ;
12
9
13
10
/**
You can’t perform that action at this time.
0 commit comments