Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F114412268
ReleephFieldSelector.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
Sun, May 25, 17:06
Size
1 KB
Mime Type
text/x-php
Expires
Tue, May 27, 17:06 (2 d)
Engine
blob
Format
Raw Data
Handle
26393605
Attached To
rPH Phabricator
ReleephFieldSelector.php
View Options
<?php
abstract
class
ReleephFieldSelector
{
final
public
function
__construct
()
{
// <empty>
}
abstract
public
function
getFieldSpecifications
();
public
function
sortFieldsForCommitMessage
(
array
$fields
)
{
assert_instances_of
(
$fields
,
'ReleephFieldSpecification'
);
return
$fields
;
}
protected
static
function
selectFields
(
array
$fields
,
array
$classes
)
{
assert_instances_of
(
$fields
,
'ReleephFieldSpecification'
);
$map
=
array
();
foreach
(
$fields
as
$field
)
{
$map
[
get_class
(
$field
)]
=
$field
;
}
$result
=
array
();
foreach
(
$classes
as
$class
)
{
$field
=
idx
(
$map
,
$class
);
if
(!
$field
)
{
throw
new
Exception
(
"Tried to select a in instance of '{$class}' but that field "
.
"is not configured for this project!"
);
}
if
(
idx
(
$result
,
$class
))
{
throw
new
Exception
(
"You have asked to select the field '{$class}' "
.
"more than once!"
);
}
$result
[
$class
]
=
$field
;
}
return
$result
;
}
}
Event Timeline
Log In to Comment