class MatchedModifiers in Persistent URL 8
Hierarchy
- class \Drupal\purl\MatchedModifiers
Expanded class hierarchy of MatchedModifiers
1 file declares its use of MatchedModifiers
- RequestSubscriber.php in src/
Event/ RequestSubscriber.php
1 string reference to 'MatchedModifiers'
1 service uses MatchedModifiers
File
- src/
MatchedModifiers.php, line 7
Namespace
Drupal\purlView source
class MatchedModifiers {
/**
* @var ModifierMatchedEvent[]
*/
private $matched = array();
/**
* @var ModifierMatchedEvent[]
*/
public function getMatched() {
return $this->matched;
}
/**
* @param ModifierMatchedEvent $event
*
* @return null
*/
public function add(ModifierMatchedEvent $event) {
$this->matched[] = $event;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MatchedModifiers:: |
private | property | ||
MatchedModifiers:: |
public | function | ||
MatchedModifiers:: |
public | function |