You are here

interface HandlerInterface in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/css-selector/Parser/Handler/HandlerInterface.php \Symfony\Component\CssSelector\Parser\Handler\HandlerInterface
  2. 8 core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\HandlerInterface
Same name and namespace in other branches
  1. 8.0 vendor/symfony/css-selector/Parser/Handler/HandlerInterface.php \Symfony\Component\CssSelector\Parser\Handler\HandlerInterface

CSS selector handler interface.

This component is a port of the Python cssselect library, which is copyright Ian Bicking, @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>

Hierarchy

Expanded class hierarchy of HandlerInterface

All classes that implement HandlerInterface

See also

https://github.com/SimonSapin/cssselect.

2 string references to 'HandlerInterface'
NameGeneratorSpec::its_name_generates_name_based_only_on_class_if_its_available in vendor/phpspec/prophecy/spec/Prophecy/Doubler/NameGeneratorSpec.php
NameGeneratorSpec::its_name_generates_name_based_on_interface_shortnames in vendor/phpspec/prophecy/spec/Prophecy/Doubler/NameGeneratorSpec.php

File

vendor/symfony/css-selector/Parser/Handler/HandlerInterface.php, line 25

Namespace

Symfony\Component\CssSelector\Parser\Handler
View source
interface HandlerInterface {

  /**
   * @param Reader      $reader
   * @param TokenStream $stream
   *
   * @return bool
   */
  public function handle(Reader $reader, TokenStream $stream);

}

Members