This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony
rubenrua a56bf552ad CS Fixes: Not double split with one array argument
Keep to use the same CS in all the Symfony code base.

Use:
```php
$resolver->setDefaults([
    'compound' => false
]);
```

Instead of:
```php
$resolver->setDefaults(
    [
        'compound' => false,
    ]
);
```

Keep the double split when the method has two or more arguments.

I miss a PSR with this rule.
2019-04-10 18:00:48 +02:00
..
Bridge Fix TestRunner compatibility to PhpUnit 8 2019-04-08 09:56:31 +02:00
Bundle CS Fixes: Not double split with one array argument 2019-04-10 18:00:48 +02:00
Component CS Fixes: Not double split with one array argument 2019-04-10 18:00:48 +02:00