Skip to content

Commit 69200d4

Browse files
committed
Merge branch '3.4' into 4.1
* 3.4: Use the real image URL for the filesystem tests [Finder] Update PHPdoc append() [DI] Fix phpdoc Fix code examples in PHPDoc [HttpKernel] Fix inheritdocs bumped Symfony version to 3.4.16 updated VERSION for 3.4.15 updated CHANGELOG for 3.4.15
2 parents 1c4519d + adc2b39 commit 69200d4

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Crawler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ public function evaluate($xpath)
626626
*
627627
* Example:
628628
*
629-
* $crawler->filter('h1 a')->extract(array('_text', 'href'));
629+
* $crawler->filter('h1 a')->extract(array('_text', 'href'));
630630
*
631631
* @param array $attributes An array of attributes
632632
*
@@ -885,7 +885,7 @@ public function registerNamespace($prefix, $namespace)
885885
* Escaped characters are: quotes (") and apostrophe (').
886886
*
887887
* Examples:
888-
* <code>
888+
*
889889
* echo Crawler::xpathLiteral('foo " bar');
890890
* //prints 'foo " bar'
891891
*
@@ -894,7 +894,7 @@ public function registerNamespace($prefix, $namespace)
894894
*
895895
* echo Crawler::xpathLiteral('a\'b"c');
896896
* //prints concat('a', "'", 'b"c')
897-
* </code>
897+
*
898898
*
899899
* @param string $s String to be escaped
900900
*

FormFieldRegistry.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,7 @@ private function walk(array $array, $base = '', array &$output = array())
186186
/**
187187
* Splits a field name into segments as a web browser would do.
188188
*
189-
* <code>
190189
* getSegments('base[foo][3][]') = array('base', 'foo, '3', '');
191-
* </code>
192190
*
193191
* @param string $name The name of the field
194192
*

0 commit comments

Comments
 (0)