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.
*/
declare(strict_types=1);
namespace eZ\Publish\API\Repository\Values\URL\Query\Criterion;
* Matches URLs which used by content placed in specified section ids.
class SectionId extends Matcher
{
* IDs of related content section.
*
* @var int[]
public $sectionIds;
* @param int[] $sectionIds
public function __construct(array $sectionIds)
$this->sectionIds = $sectionIds;
}