PHP Classes

File: vendor/symfony/symfony/src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Fixtures/php/merge.php

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/symfony/symfony/src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Fixtures/php/merge.php   Download  
File: vendor/symfony/symfony/src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Fixtures/php/merge.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Papernic
Manage documents colaboratively
Author: By
Last change:
Date: 7 years ago
Size: 391 bytes
 

Contents

Class file image Download
<?php

$this
->load('merge_import.php', $container);

$container->loadFromExtension('security', array(
   
'providers' => array(
       
'default' => array('id' => 'foo'),
    ),

   
'firewalls' => array(
       
'main' => array(
           
'form_login' => false,
           
'http_basic' => null,
        ),
    ),

   
'role_hierarchy' => array(
       
'FOO' => array('MOO'),
    ),
));