Page MenuHomePhorge

PhutilSearchQueryToken.php
No OneTemporary

Size
709 B
Referenced Files
None
Subscribers
None

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
Sun, May 4, 9:19 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
64408
Default Alt Text
PhutilSearchQueryToken.php (709 B)

Event Timeline