interface Collectable

Hierarchy

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\PharStreamWrapper
View 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

Title Sort descending Modifiers Object type Summary Overrides
Collectable::collect public function 1
Collectable::findByCallback public function 1
Collectable::has public function 1

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.