Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112284729
PhabricatorSearchResultBucketGroup.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, May 9, 15:51
Size
643 B
Mime Type
text/x-php
Expires
Sun, May 11, 15:51 (2 d)
Engine
blob
Format
Raw Data
Handle
26020182
Attached To
rPH Phabricator
PhabricatorSearchResultBucketGroup.php
View Options
<?php
final
class
PhabricatorSearchResultBucketGroup
extends
Phobject
{
private
$name
;
private
$noDataString
;
private
$objects
;
public
function
setNoDataString
(
$no_data_string
)
{
$this
->
noDataString
=
$no_data_string
;
return
$this
;
}
public
function
getNoDataString
()
{
return
$this
->
noDataString
;
}
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
return
$this
->
name
;
}
public
function
setObjects
(
array
$objects
)
{
$this
->
objects
=
$objects
;
return
$this
;
}
public
function
getObjects
()
{
return
$this
->
objects
;
}
}
Event Timeline
Log In to Comment