Pathologic was missing because of a .git folder inside.
[yaffs-website] / web / modules / contrib / ctools / src / ConstraintConditionInterface.php
1 <?php
2
3 namespace Drupal\ctools;
4
5
6 interface ConstraintConditionInterface {
7
8   /**
9    * Applies relevant constraints for this condition to the injected contexts.
10    *
11    * @param \Drupal\Core\Plugin\Context\ContextInterface[] $contexts
12    *
13    * @return NULL
14    */
15   public function applyConstraints(array $contexts = array());
16
17   /**
18    * Removes constraints for this condition from the injected contexts.
19    *
20    * @param \Drupal\Core\Plugin\Context\ContextInterface[] $contexts
21    *
22    * @return NULL
23    */
24   public function removeConstraints(array $contexts = array());
25
26 }