Skip to content

Commit 8053700

Browse files
committed
Merge branch '2.5'
* 2.5: fix typos [HttpKernel] add use statement for phpdoc fixed DateComparator if file does not exist Disabled the PHPUnit self-update on Travis fix mustRun() in sigchild environments [ClassLoader] simplified phpdoc [ClassLoader] Add a __call() method to XcacheClassLoader fix some minor typos in tests [Yaml] fixed mapping keys containing a quoted # Added fixture to test parsing of hash keys ending with a space and # [Validator] Pass strict argument into the strict email validator [Filesystem Component] mkdir race condition fix #11626 [Validator] reverted permissions change on translation files Fixed Factory services not within the ServiceReferenceGraph. [CssSelector] Fix URL to SimonSapin/cssselect repo [Validator] Fixed wrong translation keys/messages for Collection constraint. The error messages for a missing field and an unexpected field did not match the Contraint class Remove hard dependency of RequestContext in AssetsExtension added useful reminder about form.vars.errors into UPGRADE-2.5 notes [YAML] resolve variables in inlined YAML Disallow abstract definitions from doctrine event listener registration Conflicts: src/Symfony/Component/Yaml/Inline.php src/Symfony/Component/Yaml/Parser.php src/Symfony/Component/Yaml/Tests/InlineTest.php
2 parents 2e2785b + 473c33d commit 8053700

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

EventListener/SessionListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static function getSubscribedEvents()
4848
/**
4949
* Gets the session object.
5050
*
51-
* @return SessionInterface|null A SessionInterface instance of null if no session is available
51+
* @return SessionInterface|null A SessionInterface instance or null if no session is available
5252
*/
5353
abstract protected function getSession();
5454
}

EventListener/TestSessionListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static function getSubscribedEvents()
7878
/**
7979
* Gets the session object.
8080
*
81-
* @return SessionInterface|null A SessionInterface instance of null if no session is available
81+
* @return SessionInterface|null A SessionInterface instance or null if no session is available
8282
*/
8383
abstract protected function getSession();
8484
}

0 commit comments

Comments
 (0)