for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Browser\Assert\Handler;
use Zenstruck\Browser\Assert\Exception\AssertionFailed;
use Zenstruck\Browser\Assert\Handler;
/**
* @author Kevin Bond <[email protected]>
*/
final class DefaultHandler implements Handler
{
public function onSuccess(): void
// noop
}
public function onFailure(AssertionFailed $exception): void
throw $exception;