Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282433
PhutilCallbackFilterIterator.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
638 B
Referenced Files
None
Subscribers
None
PhutilCallbackFilterIterator.php
View Options
<?php
/**
* NOTE: This class has the same purpose as `CallbackFilterIterator` in PHP 5.4.
*/
final
class
PhutilCallbackFilterIterator
extends
FilterIterator
{
private
$callback
;
/**
* @param Iterator
* @param callable Signature: (mixed $current): bool.
*/
public
function
__construct
(
Iterator
$iterator
,
$callback
)
{
parent
::
__construct
(
$iterator
)
;
if
(
!
is_callable
(
$callback
)
)
{
throw
new
Exception
(
pht
(
'Callback must be callable.'
)
)
;
}
$this
->
callback
=
$callback
;
}
#[\ReturnTypeWillChange]
public
function
accept
(
)
{
return
call_user_func
(
$this
->
callback
,
$this
->
current
(
)
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 07:58 (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1115734
Default Alt Text
PhutilCallbackFilterIterator.php (638 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment