for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Scalp\PatternMatching;
use Scalp\PatternMatching\Pattern\Pattern;
final class ResolvedMatchSubject extends MatchSubject
{
public function case(Pattern $pattern, callable $handler): MatchSubject
return $this;
}
public function done()
return $this->get();