File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ parameters:
10
10
- src/Config/Routes.php
11
11
- src/Views/*
12
12
ignoreErrors:
13
- - '#Call to an undefined static method Config\\Services::[A-Za-z]+\(\)#'
14
13
universalObjectCratesClasses:
15
14
- CodeIgniter\Entity
16
15
- CodeIgniter\Entity\Entity
Original file line number Diff line number Diff line change @@ -17,10 +17,8 @@ abstract class FrontendBundle extends Bundle
17
17
{
18
18
/**
19
19
* The base directory, i.e. Assets directory + vendor path
20
- *
21
- * @var string|null
22
20
*/
23
- private static $ base ;
21
+ private static ? string $ base = null ;
24
22
25
23
/**
26
24
* Returns the base path according to the configurations.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public function testPublisherThrowsWithoutPath()
16
16
$ this ->expectException ('DomainException ' );
17
17
$ this ->expectExceptionMessage ('Invalid relative destination $path ' );
18
18
19
- $ publisher = new class () extends FrontendPublisher {
19
+ new class () extends FrontendPublisher {
20
20
};
21
21
}
22
22
You can’t perform that action at this time.
0 commit comments