Skip to content

Commit 5f05ce4

Browse files
committed
Remove FQCN type hints on properties
1 parent e6f132c commit 5f05ce4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Crawler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class Crawler implements \Countable, \IteratorAggregate
5858
*/
5959
private bool $isHtml = true;
6060

61-
private ?HTML5 $html5Parser;
61+
private $html5Parser;
6262

6363
/**
6464
* @param \DOMNodeList|\DOMNode|\DOMNode[]|string|null $node A Node to use as the base for the crawling

Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class Form extends Link implements \ArrayAccess
2323
{
2424
private \DOMElement $button;
25-
private FormFieldRegistry $fields;
25+
private $fields;
2626
private ?string $baseHref;
2727

2828
/**

0 commit comments

Comments
 (0)