-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
108 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/** | ||
* @package s9e\SweetDOM | ||
* @copyright Copyright (c) The s9e authors | ||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License | ||
*/ | ||
namespace s9e\SweetDOM\ForwardCompatibleNodes; | ||
|
||
use s9e\SweetDOM\Attr as ParentClass; | ||
|
||
class Attr extends ParentClass | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/** | ||
* @package s9e\SweetDOM | ||
* @copyright Copyright (c) The s9e authors | ||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License | ||
*/ | ||
namespace s9e\SweetDOM\ForwardCompatibleNodes; | ||
|
||
use s9e\SweetDOM\CdataSection as ParentClass; | ||
use s9e\SweetDOM\NodeTraits\ChildNodeForwardCompatibility; | ||
|
||
class CdataSection extends ParentClass | ||
{ | ||
use ChildNodeForwardCompatibility; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/** | ||
* @package s9e\SweetDOM | ||
* @copyright Copyright (c) The s9e authors | ||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License | ||
*/ | ||
namespace s9e\SweetDOM\ForwardCompatibleNodes; | ||
|
||
use s9e\SweetDOM\Comment as ParentClass; | ||
use s9e\SweetDOM\NodeTraits\ChildNodeForwardCompatibility; | ||
|
||
class Comment extends ParentClass | ||
{ | ||
use ChildNodeForwardCompatibility; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/** | ||
* @package s9e\SweetDOM | ||
* @copyright Copyright (c) The s9e authors | ||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License | ||
*/ | ||
namespace s9e\SweetDOM\ForwardCompatibleNodes; | ||
|
||
use s9e\SweetDOM\DocumentFragment as ParentClass; | ||
|
||
class DocumentFragment extends ParentClass | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/** | ||
* @package s9e\SweetDOM | ||
* @copyright Copyright (c) The s9e authors | ||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License | ||
*/ | ||
namespace s9e\SweetDOM\ForwardCompatibleNodes; | ||
|
||
use s9e\SweetDOM\Element as ParentClass; | ||
use s9e\SweetDOM\NodeTraits\ChildNodeForwardCompatibility; | ||
|
||
class Element extends ParentClass | ||
{ | ||
use ChildNodeForwardCompatibility; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/** | ||
* @package s9e\SweetDOM | ||
* @copyright Copyright (c) The s9e authors | ||
* @license http://www.opensource.org/licenses/mit-license.php The MIT License | ||
*/ | ||
namespace s9e\SweetDOM\ForwardCompatibleNodes; | ||
|
||
use s9e\SweetDOM\NodeTraits\ChildNodeForwardCompatibility; | ||
use s9e\SweetDOM\Text as ParentClass; | ||
|
||
class Text extends ParentClass | ||
{ | ||
use ChildNodeForwardCompatibility; | ||
} |