diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-08-24 09:18:02 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-08-24 09:18:02 +0200 |
commit | 1ce741e1c146dfadc1b8abc2bbc7626ac682f363 (patch) | |
tree | 32239eeec1ca38b3d2e0045e7f40011a16c027ef /Tests/Core | |
parent | b60dfa578d6ab5e1766af7adb3f882e585ed161e (diff) | |
parent | 5ccfeae19f3bf9238148326f32850672f3fea7e4 (diff) | |
download | symfony-security-1ce741e1c146dfadc1b8abc2bbc7626ac682f363.zip symfony-security-1ce741e1c146dfadc1b8abc2bbc7626ac682f363.tar.gz symfony-security-1ce741e1c146dfadc1b8abc2bbc7626ac682f363.tar.bz2 |
Merge branch '2.7' into 2.8
* 2.7:
fixes CS
Diffstat (limited to 'Tests/Core')
-rw-r--r-- | Tests/Core/Authentication/Voter/AbstractVoterTest.php | 2 | ||||
-rw-r--r-- | Tests/Core/LegacySecurityContextInterfaceTest.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Core/Authentication/Voter/AbstractVoterTest.php b/Tests/Core/Authentication/Voter/AbstractVoterTest.php index c5e9466..af7b82f 100644 --- a/Tests/Core/Authentication/Voter/AbstractVoterTest.php +++ b/Tests/Core/Authentication/Voter/AbstractVoterTest.php @@ -72,7 +72,7 @@ class VoterFixture extends AbstractVoter protected function getSupportedAttributes() { - return array( 'foo', 'bar', 'baz'); + return array('foo', 'bar', 'baz'); } protected function isGranted($attribute, $object, $user = null) diff --git a/Tests/Core/LegacySecurityContextInterfaceTest.php b/Tests/Core/LegacySecurityContextInterfaceTest.php index 57517bf..5225eb5 100644 --- a/Tests/Core/LegacySecurityContextInterfaceTest.php +++ b/Tests/Core/LegacySecurityContextInterfaceTest.php @@ -20,7 +20,7 @@ use Symfony\Component\Security\Core\Security; class LegacySecurityContextInterfaceTest extends \PHPUnit_Framework_TestCase { /** - * Test if the BC Layer is working as intended + * Test if the BC Layer is working as intended. */ public function testConstantSync() { |