getValue(), ',') !== 1) throw new \BadMethodCallException('Not supported'); if ($token->isNegated()) throw new \BadMethodCallException('Not supported'); list ($type, $primaryKey) = explode(',', $token->getValue()); $requirement = new \Szurubooru\SearchServices\Requirements\Requirement(); $requirement->setType(\Szurubooru\SearchServices\Filters\SnapshotFilter::REQUIREMENT_PRIMARY_KEY); $requirement->setValue($this->createRequirementValue($primaryKey)); $filter->addRequirement($requirement); $requirement = new \Szurubooru\SearchServices\Requirements\Requirement(); $requirement->setType(\Szurubooru\SearchServices\Filters\SnapshotFilter::REQUIREMENT_TYPE); $requirement->setValue($this->createRequirementValue(\Szurubooru\Helpers\EnumHelper::snapshotTypeFromString($type))); $filter->addRequirement($requirement); } protected function decorateFilterFromNamedToken($filter, $namedToken) { throw new \BadMethodCallException('Not supported'); } protected function getOrderColumn($token) { throw new \BadMethodCallException('Not supported'); } }