diff options
author | sarah khalil <mkhalil.sarah@gmail.com> | 2015-03-11 19:44:00 +0100 |
---|---|---|
committer | sarah khalil <mkhalil.sarah@gmail.com> | 2015-03-13 10:50:03 +0100 |
commit | 13610c5f6e929d99c9b7f518f545721321b0227a (patch) | |
tree | af88bea730bbe716728d742a09ace8c97343c869 /Core/Tests/Authorization | |
parent | 79b93b26ebf03b69df71bdeb51ec78811dcda90a (diff) | |
download | symfony-security-13610c5f6e929d99c9b7f518f545721321b0227a.zip symfony-security-13610c5f6e929d99c9b7f518f545721321b0227a.tar.gz symfony-security-13610c5f6e929d99c9b7f518f545721321b0227a.tar.bz2 |
Changed visibility of setUp() and tearDown to protected
Diffstat (limited to 'Core/Tests/Authorization')
-rw-r--r-- | Core/Tests/Authorization/AuthorizationCheckerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Tests/Authorization/AuthorizationCheckerTest.php b/Core/Tests/Authorization/AuthorizationCheckerTest.php index 64de6ef..aafc12f 100644 --- a/Core/Tests/Authorization/AuthorizationCheckerTest.php +++ b/Core/Tests/Authorization/AuthorizationCheckerTest.php @@ -21,7 +21,7 @@ class AuthorizationCheckerTest extends \PHPUnit_Framework_TestCase private $authorizationChecker; private $tokenStorage; - public function setUp() + protected function setUp() { $this->authenticationManager = $this->getMock('Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface'); $this->accessDecisionManager = $this->getMock('Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface'); |