interface Collectable in Drupal 7
Hierarchy
- interface \TYPO3\PharStreamWrapper\Collectable
Expanded class hierarchy of Collectable
All classes that implement Collectable
1 file declares its use of Collectable
- PharInvocationCollection.php in misc/
typo3/ phar-stream-wrapper/ src/ Resolver/ PharInvocationCollection.php
File
- misc/
typo3/ phar-stream-wrapper/ src/ Collectable.php, line 16
Namespace
TYPO3\PharStreamWrapperView source
interface Collectable {
/**
* @param PharInvocation $invocation
* @return bool
*/
public function has(PharInvocation $invocation);
/**
* @param PharInvocation $invocation
* @param null $flags
* @return bool
*/
public function collect(PharInvocation $invocation, $flags = null);
/**
* @param callable $callback
* @param bool $reverse
* @return null|PharInvocation
*/
public function findByCallback($callback, $reverse = false);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Collectable:: |
public | function | 1 | |
Collectable:: |
public | function | 1 | |
Collectable:: |
public | function | 1 |