You are here

interface Collectable in Drupal 7

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