Page MenuHomePhorge

PhutilSearchQueryToken.php
No OneTemporary

PhutilSearchQueryToken.php

<?php
final class PhutilSearchQueryToken extends Phobject {
private $isQuoted;
private $value;
private $operator;
private $function;
public static function newFromDictionary(array $dictionary) {
$token = new self();
$token->isQuoted = $dictionary['quoted'];
$token->operator = $dictionary['operator'];
$token->value = $dictionary['value'];
$token->function = idx($dictionary, 'function');
return $token;
}
public function isQuoted() {
return $this->isQuoted;
}
public function getValue() {
return $this->value;
}
public function getOperator() {
return $this->operator;
}
public function getFunction() {
return $this->function;
}
}

File Metadata

Mime Type
text/x-php
Expires
Jan 19 2025, 18:12 (6 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127305
Default Alt Text
PhutilSearchQueryToken.php (709 B)

Event Timeline