Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace Drupal\visitors;
4
5/**
6 * Interface for visitors search engine.
7 */
8interface VisitorsSearchEngineInterface {
9
10  /**
11   * Match the URL to a search engine.
12   *
13   * @param string $url
14   *   The URL to match.
15   *
16   * @return array|null
17   *   The search engine if matched, null otherwise.
18   */
19  public function match(string $url): ?array;
20
21}