feature #1310 Allow use of all the RequestMatcher parameters by providing an array (quazardous)
This PR was squashed before being merged into the 2.0.x-dev branch (closes #1310). Discussion ---------- Allow use of all the RequestMatcher parameters by providing an array Provider: Silex\Provider\SecurityServiceProvider Little patch to make full use of the `RequestMatcher` in `$app['security.access_rules']` ```php $app['security.access_rules'] = [ [[ 'host' => 'symfony.com', 'ips' => '192.168.0.1', ... ], 'ROLE_ADMIN'], ... ]; ``` Commits ------- 9698b776 Allow use of all the RequestMatcher parameters by providing an array
Showing
Please register or sign in to comment