Skip to content

Commit 88c45c2

Browse files
committed
merged branch pborreli/typo-2013 (PR #6625)
This PR was merged into the master branch. Commits ------- 36197dc Fixed typos Discussion ---------- Fixed typos Bug fix: no Feature addition: no Backwards compatibility break: no Fixes the following tickets: - Todo: - License of the code: MIT
2 parents d256f06 + d66ca0e commit 88c45c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Request.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ public static function normalizeQueryString($qs)
572572
* Be warned that enabling this feature might lead to CSRF issues in your code.
573573
* Check that you are using CSRF tokens when required.
574574
*
575-
* The HTTP method can only be overriden when the real HTTP method is POST.
575+
* The HTTP method can only be overridden when the real HTTP method is POST.
576576
*/
577577
public static function enableHttpMethodParameterOverride()
578578
{
@@ -722,7 +722,7 @@ public function getScriptName()
722722
*
723723
* * http://localhost/mysite returns an empty string
724724
* * http://localhost/mysite/about returns '/about'
725-
* * htpp://localhost/mysite/enco%20ded returns '/enco%20ded'
725+
* * http://localhost/mysite/enco%20ded returns '/enco%20ded'
726726
* * http://localhost/mysite/about?var=1 returns '/about'
727727
*
728728
* @return string The raw path (i.e. not urldecoded)

Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\Component\HttpFoundation\Session\Storage\Handler\MemcachedSessionHandler;
1515

16-
class MemcacheddSessionHandlerTest extends \PHPUnit_Framework_TestCase
16+
class MemcachedSessionHandlerTest extends \PHPUnit_Framework_TestCase
1717
{
1818
const PREFIX = 'prefix_';
1919
const TTL = 1000;

0 commit comments

Comments
 (0)