Skip to content

Commit

Permalink
Automatically fix coding style with php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasnatter committed Jan 20, 2021
1 parent 1a74b71 commit e3e85e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tests/Application/config/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@

$_SERVER['APP_ENV'] = $_ENV['APP_ENV'] = ($_SERVER['APP_ENV'] ?? $_ENV['APP_ENV'] ?? null) ?: 'dev';
$_SERVER['APP_DEBUG'] = $_SERVER['APP_DEBUG'] ?? $_ENV['APP_DEBUG'] ?? 'prod' !== $_SERVER['APP_ENV'];
$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], FILTER_VALIDATE_BOOLEAN) ? '1' : '0';
$_SERVER['APP_DEBUG'] = $_ENV['APP_DEBUG'] = (int) $_SERVER['APP_DEBUG'] || filter_var($_SERVER['APP_DEBUG'], \FILTER_VALIDATE_BOOLEAN) ? '1' : '0';
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,11 @@
class ContentSitemapProviderTest extends SuluTestCase
{
use AssertSnapshotTrait;
use CreateExampleTrait;

const SCHEME = 'https';
const HOST = 'localhost';

use CreateExampleTrait;

/**
* @var ContentSitemapProvider
*/
Expand Down

0 comments on commit e3e85e9

Please sign in to comment.