Skip to content

Commit d980fee

Browse files
committed
Merge branch '4.1'
* 4.1: 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 16f79e1 + 69200d4 commit d980fee

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
@@ -638,7 +638,7 @@ public function evaluate($xpath)
638638
*
639639
* Example:
640640
*
641-
* $crawler->filter('h1 a')->extract(array('_text', 'href'));
641+
* $crawler->filter('h1 a')->extract(array('_text', 'href'));
642642
*
643643
* @param array $attributes An array of attributes
644644
*
@@ -893,7 +893,7 @@ public function registerNamespace($prefix, $namespace)
893893
* Escaped characters are: quotes (") and apostrophe (').
894894
*
895895
* Examples:
896-
* <code>
896+
*
897897
* echo Crawler::xpathLiteral('foo " bar');
898898
* //prints 'foo " bar'
899899
*
@@ -902,7 +902,7 @@ public function registerNamespace($prefix, $namespace)
902902
*
903903
* echo Crawler::xpathLiteral('a\'b"c');
904904
* //prints concat('a', "'", 'b"c')
905-
* </code>
905+
*
906906
*
907907
* @param string $s String to be escaped
908908
*

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)