8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1bb777 commit 88eef5fCopy full SHA for 88eef5f
src/Symfony/Component/DomCrawler/Crawler.php
@@ -526,8 +526,9 @@ public function children(string $selector = null): static
526
*
527
* @throws \InvalidArgumentException When current node is empty
528
*/
529
- public function attr(string $attribute, string $default = null): ?string
+ public function attr(string $attribute/* , string $default = null */): ?string
530
{
531
+ $default = \func_num_args() > 1 ? func_get_arg(1) : null;
532
if (!$this->nodes) {
533
if (null !== $default) {
534
return $default;
0 commit comments