Skip to content

Commit 2a68033

Browse files
connorhuthePanz
authored andcommitted
Fix(php-cs-fix) fix php-cs-fix single_space_around_construct warning
1 parent 8ba3ff2 commit 2a68033

12 files changed

+12
-12
lines changed

test/functional/authTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'frontend';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/autoloadTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'frontend';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/cacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'cache';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/escapingTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'frontend';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/filterTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'frontend';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/formatTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'frontend';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/genericTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'frontend';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/httpcacheTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'cache';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/i18nFormTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'i18n';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/i18nTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'i18n';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

test/functional/prodTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
$app = 'frontend';
1212
$debug = false;
13-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
13+
if (!include __DIR__.'/../bootstrap/functional.php') {
1414
return;
1515
}
1616

test/functional/sfTestBrowserTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
$app = 'frontend';
12-
if (!include(__DIR__.'/../bootstrap/functional.php')) {
12+
if (!include __DIR__.'/../bootstrap/functional.php') {
1313
return;
1414
}
1515

0 commit comments

Comments
 (0)