Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
"prefer-stable": true,
"require": {
"php": ">=8.0",
"symfony/config": "^4.4|^5.0|^6.0",
"symfony/yaml": "^4.4|^5.0|^6.0",
"symfony/routing": "^4.4|^5.0|^6.0",
"symfony/expression-language": "^4.4|^5.0|^6.0",
"symfony/security-core": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0"
"symfony/config": "^4.4|^5.0|^6.0|^7.0",
"symfony/yaml": "^4.4|^5.0|^6.0|^7.0",
"symfony/routing": "^4.4|^5.0|^6.0|^7.0",
"symfony/expression-language": "^4.4|^5.0|^6.0|^7.0",
"symfony/security-core": "^4.4|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^4.4|^5.0|^6.0|^7.0",
"symfony/http-kernel": "^4.4|^5.0|^6.0|^7.0"
},
"require-dev": {
"atoum/atoum": "^3.4|^4.0",
"m6web/php-cs-fixer-config": "^2.1",
"symfony/http-foundation": "^4.4|^5.0|^6.0",
"symfony/http-foundation": "^4.4|^5.0|^6.0|^7.0",
"phpstan/phpstan": "^1.7",
"rector/rector": "^0.13.2"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class DefaultFormatter implements FormatterInterface
public function __construct(
protected string $environment,
protected array $ignoreHeaders = [],
protected string $prefixKey = ''
protected string $prefixKey = '',
) {
}

Expand Down
4 changes: 2 additions & 2 deletions src/M6Web/Bundle/LogBridgeBundle/Matcher/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Builder implements BuilderInterface
public function __construct(
private StatusTypeManager $statusTypeManager,
private array $filters,
private array $activeFilters
private array $activeFilters,
) {
}

Expand Down Expand Up @@ -74,7 +74,7 @@ public function getAbsoluteCachePath(): string
return sprintf('%s/%s.php', $this->getCacheDir(), $this->getMatcherClassName());
}

public function isDebug(bool $debug = null): bool
public function isDebug(?bool $debug = null): bool
{
if (is_bool($debug)) {
$this->debug = $debug;
Expand Down
Loading