minor #17473 fixed CS (fabpot)

This PR was merged into the 3.0 branch.

Discussion
----------

fixed CS

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | n/a
| License       | MIT
| Doc PR        | n/a

Commits
-------

e9143fd fixed CS
This commit is contained in:
Fabien Potencier 2016-01-21 11:01:39 +01:00
commit 7a90d5cd4b
3 changed files with 3 additions and 4 deletions

View File

@ -111,7 +111,7 @@ class ArrayInputTest extends \PHPUnit_Framework_TestCase
array(),
array(),
'->parse() does not choke on end of options signal',
)
),
);
}

View File

@ -1338,8 +1338,8 @@ class RequestTest extends \PHPUnit_Framework_TestCase
$this->assertNull($request->setRequestFormat('foo'));
$this->assertEquals('foo', $request->getRequestFormat(null));
$request = new Request(array('_format' => 'foo'));
$this->assertEquals('html', $request->getRequestFormat());
$request = new Request(array('_format' => 'foo'));
$this->assertEquals('html', $request->getRequestFormat());
}
public function testHasSession()

View File

@ -19,7 +19,6 @@ use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Core\Exception\CookieTheftException;
use Symfony\Component\Security\Core\Authentication\RememberMe\PersistentToken;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Psr\Log\LoggerInterface;
/**
* Concrete implementation of the RememberMeServicesInterface which needs