Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90377069
PhabricatorQuery.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
Fri, Nov 1, 02:32
Size
281 B
Mime Type
text/x-php
Expires
Sun, Nov 3, 02:32 (2 d)
Engine
blob
Format
Raw Data
Handle
22063074
Attached To
rPH Phabricator
PhabricatorQuery.php
View Options
<?php
abstract
class
PhabricatorQuery
{
abstract
public
function
execute
();
final
protected
function
formatWhereClause
(
array
$parts
)
{
$parts
=
array_filter
(
$parts
);
if
(!
$parts
)
{
return
''
;
}
return
'WHERE ('
.
implode
(
') AND ('
,
$parts
).
')'
;
}
}
Event Timeline
Log In to Comment