Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112327678
PhutilSearchQueryToken.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, May 10, 01:43
Size
568 B
Mime Type
text/x-php
Expires
Mon, May 12, 01:43 (2 d)
Engine
blob
Format
Raw Data
Handle
26066127
Attached To
rPHU libphutil
PhutilSearchQueryToken.php
View Options
<?php
final
class
PhutilSearchQueryToken
extends
Phobject
{
private
$isQuoted
;
private
$value
;
private
$operator
;
public
static
function
newFromDictionary
(
array
$dictionary
)
{
$token
=
new
self
();
$token
->
isQuoted
=
$dictionary
[
'quoted'
];
$token
->
operator
=
$dictionary
[
'operator'
];
$token
->
value
=
$dictionary
[
'value'
];
return
$token
;
}
public
function
isQuoted
()
{
return
$this
->
isQuoted
;
}
public
function
getValue
()
{
return
$this
->
value
;
}
public
function
getOperator
()
{
return
$this
->
operator
;
}
}
Event Timeline
Log In to Comment