| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function __construct(array $intents = [], array $attributes = [], ?string $tag = null) |
||
| 21 | { |
||
| 22 | parent::__construct($intents, $attributes, $tag); |
||
| 23 | |||
| 24 | $this->nodes[] = new ExactFilter('identifier', 'website:pageIdentifier'); |
||
| 25 | |||
| 26 | $this->nodes[] = new LikeFilter('title', 'website:pageTitle'); |
||
| 27 | |||
| 28 | $this->nodes[] = new LikeFilter('lede', 'website:pageLede'); |
||
| 29 | |||
| 30 | $this->nodes[] = new LikeFilter('body', 'website:pageBody'); |
||
| 31 | } |
||
| 33 |