Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Concerns;
namespace Ziadoz\AssertableHtml\Concerns\Asserts;

use PHPUnit\Framework\Assert as PHPUnit;
use Ziadoz\AssertableHtml\Support\Whitespace;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Concerns;
namespace Ziadoz\AssertableHtml\Concerns\Asserts;

use PHPUnit\Framework\Assert as PHPUnit;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Concerns;
namespace Ziadoz\AssertableHtml\Concerns\Asserts;

use PHPUnit\Framework\Assert as PHPUnit;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Concerns;
namespace Ziadoz\AssertableHtml\Concerns\Asserts;

use PHPUnit\Framework\Assert as PHPUnit;
use Ziadoz\AssertableHtml\Dom\AssertableAttributesList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Concerns;
namespace Ziadoz\AssertableHtml\Concerns\Asserts;

use OutOfBoundsException;
use PHPUnit\Framework\Assert as PHPUnit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Concerns;
namespace Ziadoz\AssertableHtml\Concerns\Asserts;

use PHPUnit\Framework\Assert as PHPUnit;

Expand Down
2 changes: 1 addition & 1 deletion src/Dom/AssertableAttributesList.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use OutOfBoundsException;
use RuntimeException;
use Traversable;
use Ziadoz\AssertableHtml\Concerns\AssertsAttributesList;
use Ziadoz\AssertableHtml\Concerns\Asserts\AssertsAttributesList;
use Ziadoz\AssertableHtml\Support\Whitespace;

final readonly class AssertableAttributesList implements ArrayAccess, Countable, IteratorAggregate
Expand Down
2 changes: 1 addition & 1 deletion src/Dom/AssertableClassesList.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use RuntimeException;
use Stringable;
use Traversable;
use Ziadoz\AssertableHtml\Concerns\AssertsClassesList;
use Ziadoz\AssertableHtml\Concerns\Asserts\AssertsClassesList;

final readonly class AssertableClassesList implements ArrayAccess, Countable, IteratorAggregate, Stringable
{
Expand Down
2 changes: 1 addition & 1 deletion src/Dom/AssertableDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Dom\HTMLDocument;
use ErrorException;
use PHPUnit\Framework\Assert as PHPUnit;
use Ziadoz\AssertableHtml\Concerns\AssertsDocument;
use Ziadoz\AssertableHtml\Concerns\Asserts\AssertsDocument;
use Ziadoz\AssertableHtml\Concerns\Targetable;
use Ziadoz\AssertableHtml\Concerns\Whenable;
use Ziadoz\AssertableHtml\Concerns\Withable;
Expand Down
2 changes: 1 addition & 1 deletion src/Dom/AssertableElement.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Dom\Element;
use Dom\HTMLElement;
use PHPUnit\Framework\Assert as PHPUnit;
use Ziadoz\AssertableHtml\Concerns\AssertsElement;
use Ziadoz\AssertableHtml\Concerns\Asserts\AssertsElement;
use Ziadoz\AssertableHtml\Concerns\IdentifiesElement;
use Ziadoz\AssertableHtml\Concerns\Targetable;
use Ziadoz\AssertableHtml\Concerns\Whenable;
Expand Down
2 changes: 1 addition & 1 deletion src/Dom/AssertableElementsList.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use OutOfBoundsException;
use RuntimeException;
use Traversable;
use Ziadoz\AssertableHtml\Concerns\AssertsElementsList;
use Ziadoz\AssertableHtml\Concerns\Asserts\AssertsElementsList;
use Ziadoz\AssertableHtml\Concerns\Whenable;
use Ziadoz\AssertableHtml\Concerns\Withable;

Expand Down
2 changes: 1 addition & 1 deletion src/Dom/AssertableText.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Ziadoz\AssertableHtml\Dom;

use Stringable;
use Ziadoz\AssertableHtml\Concerns\AssertsText;
use Ziadoz\AssertableHtml\Concerns\Asserts\AssertsText;
use Ziadoz\AssertableHtml\Support\Whitespace;

final readonly class AssertableText implements Stringable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Tests\Unit\Concerns;
namespace Ziadoz\AssertableHtml\Tests\Unit\Concerns\Asserts;

use PHPUnit\Framework\AssertionFailedError;
use PHPUnit\Framework\TestCase;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Tests\Unit\Concerns;
namespace Ziadoz\AssertableHtml\Tests\Unit\Concerns\Asserts;

use PHPUnit\Framework\AssertionFailedError;
use PHPUnit\Framework\Attributes\DataProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Ziadoz\AssertableHtml\Tests\Unit\Concerns;
namespace Ziadoz\AssertableHtml\Tests\Unit\Concerns\Asserts;

use OutOfBoundsException;
use PHPUnit\Framework\AssertionFailedError;
Expand Down