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 FileImporter\Services;
4
5use FileImporter\Data\SourceUrl;
6
7/**
8 * Base class for dedicated normalization rules that are only true for specific SourceUrls, as
9 * detected by the corresponding SourceUrlChecker.
10 *
11 * @license GPL-2.0-or-later
12 * @author Addshore
13 */
14interface SourceUrlNormalizer {
15
16    /**
17     * @return SourceUrl
18     */
19    public function normalize( SourceUrl $sourceUrl );
20
21}