Skip to content

Commit adc2b39

Browse files
Merge branch '2.8' into 3.4
* 2.8: Use the real image URL for the filesystem tests [Finder] Update PHPdoc append() [DI] Fix phpdoc Fix code examples in PHPDoc [HttpKernel] Fix inheritdocs
2 parents 452bfc8 + 161f23f commit adc2b39

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
*
@@ -889,7 +889,7 @@ public function registerNamespace($prefix, $namespace)
889889
* Escaped characters are: quotes (") and apostrophe (').
890890
*
891891
* Examples:
892-
* <code>
892+
*
893893
* echo Crawler::xpathLiteral('foo " bar');
894894
* //prints 'foo " bar'
895895
*
@@ -898,7 +898,7 @@ public function registerNamespace($prefix, $namespace)
898898
*
899899
* echo Crawler::xpathLiteral('a\'b"c');
900900
* //prints concat('a', "'", 'b"c')
901-
* </code>
901+
*
902902
*
903903
* @param string $s String to be escaped
904904
*

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)