PHP CS Fixer updated (3.63.1 -> v3.64.0)

This commit is contained in:
2024-09-04 14:38:56 +02:00
parent 063bc2857f
commit 313fb9ffdf
302 changed files with 391 additions and 391 deletions

View File

@@ -335,7 +335,7 @@ class ChillMainExtension extends Extension implements
ContainerBuilder $container,
array $crudConfig,
array $apiConfig,
Loader\YamlFileLoader $loader
Loader\YamlFileLoader $loader,
): void {
if (0 === \count($crudConfig)) {
return;

View File

@@ -44,7 +44,7 @@ class ExportsCompilerPass implements CompilerPassInterface
private function compileExportElementsProvider(
Definition $chillManagerDefinition,
ContainerBuilder $container
ContainerBuilder $container,
) {
$taggedServices = $container->findTaggedServiceIds(
'chill.export_elements_provider'
@@ -73,7 +73,7 @@ class ExportsCompilerPass implements CompilerPassInterface
private function compileFormatters(
Definition $chillManagerDefinition,
ContainerBuilder $container
ContainerBuilder $container,
) {
$taggedServices = $container->findTaggedServiceIds(
'chill.export_formatter'

View File

@@ -26,7 +26,7 @@ class Configuration implements ConfigurationInterface
public function __construct(
array $widgetFactories,
private readonly ContainerBuilder $containerBuilder
private readonly ContainerBuilder $containerBuilder,
) {
$this->setWidgetFactories($widgetFactories);
}

View File

@@ -122,7 +122,7 @@ abstract class AbstractWidgetsCompilerPass implements CompilerPassInterface
public function doProcess(
ContainerBuilder $container,
$extension,
$containerWidgetConfigParameterName
$containerWidgetConfigParameterName,
) {
if (!$container->hasDefinition(self::WIDGET_MANAGER)) {
throw new \LogicException('the service '.self::WIDGET_MANAGER.' should be present. It is required by '.self::class);
@@ -280,7 +280,7 @@ abstract class AbstractWidgetsCompilerPass implements CompilerPassInterface
WidgetFactoryInterface $factory,
$place,
$order,
array $config
array $config,
) {
$serviceId = $factory->getServiceId($container, $place, $order, $config);
$definition = $factory->createDefinition(