Skip to content

Commit efaada6

Browse files
Merge branch '4.1'
* 4.1: Enable native_constant_invocation CS fixer
2 parents 4d2ab02 + 6912cfe commit efaada6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Tests/Generator/Dumper/PhpGeneratorDumperTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ protected function setUp()
4646

4747
$this->routeCollection = new RouteCollection();
4848
$this->generatorDumper = new PhpGeneratorDumper($this->routeCollection);
49-
$this->testTmpFilepath = sys_get_temp_dir().DIRECTORY_SEPARATOR.'php_generator.'.$this->getName().'.php';
50-
$this->largeTestTmpFilepath = sys_get_temp_dir().DIRECTORY_SEPARATOR.'php_generator.'.$this->getName().'.large.php';
49+
$this->testTmpFilepath = sys_get_temp_dir().\DIRECTORY_SEPARATOR.'php_generator.'.$this->getName().'.php';
50+
$this->largeTestTmpFilepath = sys_get_temp_dir().\DIRECTORY_SEPARATOR.'php_generator.'.$this->getName().'.large.php';
5151
@unlink($this->testTmpFilepath);
5252
@unlink($this->largeTestTmpFilepath);
5353
}

Tests/Matcher/Dumper/PhpMatcherDumperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected function setUp()
3636
parent::setUp();
3737

3838
$this->matcherClass = uniqid('ProjectUrlMatcher');
39-
$this->dumpPath = sys_get_temp_dir().DIRECTORY_SEPARATOR.'php_matcher.'.$this->matcherClass.'.php';
39+
$this->dumpPath = sys_get_temp_dir().\DIRECTORY_SEPARATOR.'php_matcher.'.$this->matcherClass.'.php';
4040
}
4141

4242
protected function tearDown()

0 commit comments

Comments
 (0)