Skip to content

Commit

Permalink
Apply codestyle from current config with friendsofphp/php-cs-fixer:v3…
Browse files Browse the repository at this point in the history
….51.0
  • Loading branch information
84m committed Mar 8, 2024
1 parent 3a64204 commit 0272e33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/CacheWarmer/SerializerCacheWarmer.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct(array $paths, array $profiles, HTMLPurifiersRegistry
$this->filesystem = $filesystem;
}

public function warmUp($cacheDir, string $buildDir = null): array
public function warmUp($cacheDir, ?string $buildDir = null): array
{
foreach ($this->paths as $path) {
$this->filesystem->remove($path); // clean previous cache
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/ExerciseHTMLPurifierExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private static function resolveProfileInheritance(string $parent, array $configs
$resolved[$parent]['blank_elements'] = $configs[$parent]['blank_elements'];
}

private static function getResolvedConfig(string $parameter, array $parents, array $definition = null): array
private static function getResolvedConfig(string $parameter, array $parents, ?array $definition = null): array
{
if (null !== $definition) {
return array_filter(array_merge(
Expand Down
2 changes: 1 addition & 1 deletion src/HTMLPurifierConfigFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class HTMLPurifierConfigFactory
public static function create(
string $profile,
array $configArray,
\HTMLPurifier_Config $defaultConfig = null,
?\HTMLPurifier_Config $defaultConfig = null,
array $parents = [],
array $attributes = [],
array $elements = [],
Expand Down

0 comments on commit 0272e33

Please sign in to comment.