for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace RemotelyLiving\Doorkeeper\Identification;
final class PipedComposite extends AbstractIdentification
{
protected function validate($value): void
if (!$value || mb_strpos((string)$value, '|') === false) {
throw new \InvalidArgumentException("{$value} is not a pipe delimited composite");
}