Skip to content

Commit

Permalink
Fix(php-cs-fix) fix php-cs-fix single_space_around_construct warning
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhu committed Dec 16, 2023
1 parent f7972ef commit 39ff6bd
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion test/functional/authTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'frontend';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/autoloadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'frontend';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/cacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'cache';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/escapingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'frontend';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/filterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'frontend';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/formatTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'frontend';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/genericTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'frontend';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/httpcacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'cache';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/i18nFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'i18n';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/i18nTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'i18n';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/prodTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

$app = 'frontend';
$debug = false;
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/sfTestBrowserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

$app = 'frontend';
if (!include(__DIR__.'/../bootstrap/functional.php')) {
if (!include __DIR__.'/../bootstrap/functional.php') {
return;
}

Expand Down

0 comments on commit 39ff6bd

Please sign in to comment.