Skip to content

Commit ce8aa8c

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: Detect Mintty for color support on Windows Detect Mintty for color support on Windows Add a group for tests of the finder against the FTP server Fix license headers Forbid serializing a Crawler Fix phpdoc block of NativeSessionStorage class Added exception when setAutoInitialize is called when locked [FrameworkBundle] Advanced search templates of bundles [Security] Allow user providers to be defined in many files Use random_bytes function if it is available for random number generation
2 parents de8c10c + 6202a79 commit ce8aa8c

File tree

5 files changed

+36
-1
lines changed

5 files changed

+36
-1
lines changed

DependencyInjection/MainConfiguration.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,6 @@ private function addProvidersSection(ArrayNodeDefinition $rootNode)
371371
),
372372
'my_entity_provider' => array('entity' => array('class' => 'SecurityBundle:User', 'property' => 'username')),
373373
))
374-
->disallowNewKeysInSubsequentConfigs()
375374
->isRequired()
376375
->requiresAtLeastOneElement()
377376
->useAttributeAsKey('name')

Tests/DataCollector/SecurityDataCollectorTest.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\Bundle\SecurityBundle\Tests\DataCollector;
413

514
use Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector;

Tests/Functional/app/CsrfFormLogin/bundles.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
return array(
413
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
514
new Symfony\Bundle\SecurityBundle\SecurityBundle(),

Tests/Functional/app/FirewallEntryPoint/bundles.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
return array(
413
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
514
new Symfony\Bundle\SecurityBundle\SecurityBundle(),

Tests/Functional/app/StandardFormLogin/bundles.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
use Symfony\Bundle\SecurityBundle\Tests\Functional\Bundle\FormLoginBundle\FormLoginBundle;
413
use Symfony\Bundle\TwigBundle\TwigBundle;
514
use Symfony\Bundle\SecurityBundle\SecurityBundle;

0 commit comments

Comments
 (0)