Skip to content

Commit

Permalink
WiP
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshyPHP committed Dec 17, 2023
1 parent f8611ff commit 824c966
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Document.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function __construct(string $version = '1.0', string $encoding = '')
$namespace = __NAMESPACE__;
if ($this->needsWorkarounds())
{
$namespace .= '\\Workarounds';
$namespace .= '\\PatchedNodes';
}
foreach ($classes as $className)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Workarounds/Attr.php → src/PatchedNodes/Attr.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @copyright Copyright (c) The s9e authors
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\SweetDOM\Workarounds;
namespace s9e\SweetDOM\PatchedNodes;

use s9e\SweetDOM\Attr as ParentClass;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @copyright Copyright (c) The s9e authors
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\SweetDOM\Workarounds;
namespace s9e\SweetDOM\PatchedNodes;

use s9e\SweetDOM\NodeTraits\ChildNodeWorkarounds;
use s9e\SweetDOM\CdataSection as ParentClass;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @copyright Copyright (c) The s9e authors
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\SweetDOM\Workarounds;
namespace s9e\SweetDOM\PatchedNodes;

use s9e\SweetDOM\NodeTraits\ChildNodeWorkarounds;
use s9e\SweetDOM\Comment as ParentClass;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @copyright Copyright (c) The s9e authors
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\SweetDOM\Workarounds;
namespace s9e\SweetDOM\PatchedNodes;

use s9e\SweetDOM\NodeTraits\ParentNodeWorkarounds;
use s9e\SweetDOM\DocumentFragment as ParentClass;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @copyright Copyright (c) The s9e authors
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\SweetDOM\Workarounds;
namespace s9e\SweetDOM\PatchedNodes;

use s9e\SweetDOM\NodeTraits\ChildNodeWorkarounds;
use s9e\SweetDOM\NodeTraits\ParentNodeWorkarounds;
Expand Down
2 changes: 1 addition & 1 deletion src/Workarounds/Text.php → src/PatchedNodes/Text.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @copyright Copyright (c) The s9e authors
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\SweetDOM\Workarounds;
namespace s9e\SweetDOM\PatchedNodes;

use s9e\SweetDOM\NodeTraits\ChildNodeWorkarounds;
use s9e\SweetDOM\Text as ParentClass;
Expand Down

0 comments on commit 824c966

Please sign in to comment.