Skip to content

Commit dbbfe74

Browse files
committed
Cleaned up tests
1 parent f85eea6 commit dbbfe74

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+66
-76
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions

src/PHPHtmlParser/Content.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser;
33

44
/**

src/PHPHtmlParser/Curl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser;
33

44
use PHPHtmlParser\Exceptions\CurlException;

src/PHPHtmlParser/CurlInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser;
33

44
/**

src/PHPHtmlParser/Dom.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser;
33

44
use PHPHtmlParser\Dom\AbstractNode;

src/PHPHtmlParser/Dom/AbstractNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser\Dom;
33

44
use PHPHtmlParser\Exceptions\CircularException;

src/PHPHtmlParser/Dom/ArrayNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser\Dom;
33

44
use Countable;

src/PHPHtmlParser/Dom/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser\Dom;
33

44
use ArrayAccess;

src/PHPHtmlParser/Dom/HtmlNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser\Dom;
33

44
use PHPHtmlParser\Exceptions\UnknownChildTypeException;

src/PHPHtmlParser/Dom/InnerNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php declare(strict_types=1);
22
namespace PHPHtmlParser\Dom;
33

44
use PHPHtmlParser\Exceptions\ChildNotFoundException;

0 commit comments

Comments
 (0)