for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Remorhaz\JSON\Path\Processor\Result;
use Remorhaz\JSON\Data\Path\PathInterface;
final class NonExistingSelectOnePathResult implements SelectOnePathResultInterface
{
public function exists(): bool
return false;
}
public function get(): PathInterface
throw new Exception\SelectedValueNotFoundException();
public function encode(): string