Skip to content

Commit 63bdff7

Browse files
committed
apply cs fixer
1 parent 1144f47 commit 63bdff7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ protected function resolveApplicationConfiguration($app)
110110

111111
$path = __DIR__ . "/../vendor/statamic/cms/config/{$config}.php";
112112

113-
if (!file_exists($path)) {
113+
if (! file_exists($path)) {
114114
continue;
115115
}
116116

@@ -125,7 +125,7 @@ protected function resolveApplicationConfiguration($app)
125125

126126
protected function initializeDirectory($directory)
127127
{
128-
if (!file_exists($directory)) {
128+
if (! file_exists($directory)) {
129129
mkdir($directory);
130130
}
131131
}

0 commit comments

Comments
 (0)