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
2 changes: 1 addition & 1 deletion src/Frame/Frame.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;

final class Frame implements FrameInterface
final class Frame implements \Stringable, FrameInterface
{
private LoggerInterface $logger;

Expand Down
2 changes: 1 addition & 1 deletion src/Frame/FrameLocator.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;

final class FrameLocator implements FrameLocatorInterface
final class FrameLocator implements \Stringable, FrameLocatorInterface
{
private LoggerInterface $logger;

Expand Down
2 changes: 1 addition & 1 deletion src/Locator/Locator.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;

final class Locator implements LocatorInterface
final class Locator implements \Stringable, LocatorInterface
{
private SelectorChain $selectorChain;

Expand Down
2 changes: 1 addition & 1 deletion src/Locator/SelectorChain.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace Playwright\Locator;

final class SelectorChain implements SelectorChainInterface
final class SelectorChain implements \Stringable, SelectorChainInterface
{
/** @var array<string> */
private array $selectors = [];
Expand Down