Skip to content

Commit 245b822

Browse files
Merge branch '3.4' into 4.4
* 3.4: [Filesystem] Handle paths on different drives [WebProfiler] Do not add src-elem CSP directives if they do not exist [Yaml] fix parse error when unindented collections contain a comment [3.4][Inflector] Improve testSingularize() argument name [PhpUnitBridge] fix PHP 5.3 compat again Skip validation when email is an empty object fix sr_Latn translation [Validator] fix lazy property usage. Fix annotation [PhpUnitBridge] fix compat with PHP 5.3 [DX] Show the ParseException message in YAML file loaders
2 parents b7ff834 + db4fc9e commit 245b822

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ public function offsetExists($name)
959959
*
960960
* @return FormInterface The child form
961961
*
962-
* @throws \OutOfBoundsException if the named child does not exist
962+
* @throws OutOfBoundsException if the named child does not exist
963963
*/
964964
public function offsetGet($name)
965965
{

FormInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function add($child, $type = null, array $options = []);
6262
*
6363
* @return self
6464
*
65-
* @throws \OutOfBoundsException if the named child does not exist
65+
* @throws Exception\OutOfBoundsException if the named child does not exist
6666
*/
6767
public function get($name);
6868

0 commit comments

Comments
 (0)