for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace eZ\Publish\API\Repository\Values\URL\Query\Criterion;
* Matches URLs based on validity flag.
class Validity extends Matcher
{
* If true the matcher will selects only valid URLs.
*
* @var bool
public $isValid;
* Validity constructor.
* @param bool $isValid
public function __construct($isValid)
$this->isValid = $isValid;
}