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/Bundle/SecurityBundle
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
..
Command switched array() to [] 2019-01-16 10:39:14 +01:00
DataCollector switched array() to [] 2019-01-16 10:39:14 +01:00
Debug switched array() to [] 2019-01-16 10:39:14 +01:00
DependencyInjection Apply php-cs-fixer rule for array_key_exists() 2019-02-23 16:06:07 +01:00
EventListener Merge branch '2.8' into 3.4 2018-07-26 11:06:28 +02:00
Resources moved XSD to HTTPS 2019-03-04 11:06:18 +01:00
Security switched array() to [] 2019-01-16 10:39:14 +01:00
Templating/Helper Removed non-existing parameters for LogoutUrlGenerator calls 2019-03-02 17:24:44 +01:00
Tests CS Fixes: Not double split with one array argument 2019-04-10 18:00:48 +02:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md Clean up 2018-01-02 16:37:23 +01:00
composer.json Merge branch '2.8' into 3.4 2018-08-18 18:47:20 +02:00
LICENSE update year in license files 2019-01-01 14:45:19 +01:00
phpunit.xml.dist Bump phpunit XSD version to 5.2 2018-11-11 12:18:13 +01:00
README.md add readme files where missing 2016-03-07 11:36:15 +01:00
SecurityBundle.php Merge branch '2.8' into 3.4 2018-07-26 11:06:28 +02:00
SecurityUserValueResolver.php Added a SecurityUserValueResolver for controllers 2016-07-01 08:00:40 +02:00