File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Tests/Session/Storage/Handler Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ public function get($label)
198
198
public function end ()
199
199
{
200
200
if (null === $ this ->parent ) {
201
- throw new \RuntimeException ('Calling end on root command dont makes sense. ' );
201
+ throw new \RuntimeException ('Calling end on root command doesn \' t make sense. ' );
202
202
}
203
203
204
204
return $ this ->parent ;
Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ public function bind($submittedData)
542
542
}
543
543
544
544
// Check whether the form is compound.
545
- // This check is preferrable over checking the number of children,
545
+ // This check is preferable over checking the number of children,
546
546
// since forms without children may also be compound.
547
547
// (think of empty collection forms)
548
548
if ($ this ->config ->getCompound ()) {
@@ -837,7 +837,7 @@ public function all()
837
837
*/
838
838
public function getChildren ()
839
839
{
840
- trigger_error ('getChilren () is deprecated since version 2.1 and will be removed in 2.3. Use all() instead. ' , E_USER_DE
8000
PRECATED );
840
+ trigger_error ('getChildren () is deprecated since version 2.1 and will be removed in 2.3. Use all() instead. ' , E_USER_DEPRECATED );
841
841
842
842
return $ this ->all ();
843
843
}
Original file line number Diff line number Diff line change @@ -572,7 +572,7 @@ public static function normalizeQueryString($qs)
572
572
* Be warned that enabling this feature might lead to CSRF issues in your code.
573
573
* Check that you are using CSRF tokens when required.
574
574
*
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.
576
576
*/
577
577
public static function enableHttpMethodParameterOverride ()
578
578
{
@@ -722,7 +722,7 @@ public function getScriptName()
722
722
*
723
723
* * http://localhost/mysite returns an empty string
724
724
* * http://localhost/mysite/about returns '/about'
725
- * * htpp ://localhost/mysite/enco%20ded returns '/enco%20ded'
725
+ * * http ://localhost/mysite/enco%20ded returns '/enco%20ded'
726
726
* * http://localhost/mysite/about?var=1 returns '/about'
727
727
*
728
728
* @return string The raw path (i.e. not urldecoded)
Original file line number Diff line number Diff line change 13
13
14
14
use Symfony \Component \HttpFoundation \Session \Storage \Handler \MemcachedSessionHandler ;
15
15
16
- class MemcacheddSessionHandlerTest extends \PHPUnit_Framework_TestCase
16
+ class MemcachedSessionHandlerTest extends \PHPUnit_Framework_TestCase
17
17
{
18
18
const PREFIX = 'prefix_ ' ;
19
19
const TTL = 1000 ;
You can’t perform that action at this time.
0 commit comments