You are here

interface FilterInterface in Zircon Profile 8

Same name in this branch
  1. 8 vendor/zendframework/zend-hydrator/src/Filter/FilterInterface.php \Zend\Hydrator\Filter\FilterInterface
  2. 8 core/modules/filter/src/Plugin/FilterInterface.php \Drupal\filter\Plugin\FilterInterface
  3. 8 vendor/zendframework/zend-stdlib/src/Hydrator/Filter/FilterInterface.php \Zend\Stdlib\Hydrator\Filter\FilterInterface
Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-hydrator/src/Filter/FilterInterface.php \Zend\Hydrator\Filter\FilterInterface

Hierarchy

Expanded class hierarchy of FilterInterface

All classes that implement FilterInterface

1 file declares its use of FilterInterface
FilterInterface.php in vendor/zendframework/zend-stdlib/src/Hydrator/Filter/FilterInterface.php

File

vendor/zendframework/zend-hydrator/src/Filter/FilterInterface.php, line 12

Namespace

Zend\Hydrator\Filter
View source
interface FilterInterface {

  /**
   * Should return true, if the given filter
   * does not match
   *
   * @param string $property The name of the property
   * @return bool
   */
  public function filter($property);

}

Members

Namesort descending Modifiers Type Description Overrides
FilterInterface::filter public function Should return true, if the given filter does not match 7