This commit is contained in:
Fabien Potencier 2016-01-21 10:55:31 +01:00
parent 2b1daa462f
commit e9143fd837
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