Skip to content

Commit

Permalink
Bumped api-clients/cs-fixer-config to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
WyriHaximus committed Dec 24, 2018
1 parent fb9218b commit bdd789f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -10,7 +10,7 @@
],
"require": {
"php": "^7.2",
"api-clients/cs-fixer-config": "^1.0",
"api-clients/cs-fixer-config": "^1.1.1",
"clue/block-react": "^1.1",
"friendsofphp/php-cs-fixer": "^2.5",
"infection/infection": "^0.11.4",
Expand Down
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/TestCase.php
Expand Up @@ -37,13 +37,13 @@ protected function setUp(): void
parent::setUp();

$this->baseTmpDir = $this->getSysTempDir() .
DIRECTORY_SEPARATOR .
\DIRECTORY_SEPARATOR .
'p-a-c-t-' .
\uniqid() .
DIRECTORY_SEPARATOR;
\DIRECTORY_SEPARATOR;
$this->tmpDir = $this->baseTmpDir .
\uniqid() .
DIRECTORY_SEPARATOR;
\DIRECTORY_SEPARATOR;
;

$this->tmpNamespace = \uniqid('PACTN');
Expand Down Expand Up @@ -78,7 +78,7 @@ public function provideTrueFalse(): array
*/
protected function getSysTempDir(): string
{
if (\strtoupper(\substr(PHP_OS, 0, 3)) === 'WIN') {
if (\strtoupper(\substr(\PHP_OS, 0, 3)) === 'WIN') {
return 'C:\\t\\';
}

Expand Down

0 comments on commit bdd789f

Please sign in to comment.