| 1 | <?php |
||
| 19 | class WordPressUrlGenerator implements UrlGenerator |
||
| 20 | { |
||
| 21 | const DOMAIN = 'svn.wordpress.org'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | 4 | public function supports($sourceUrl) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 2 | public function generateCompareUrl($sourceUrlFrom, Version $versionFrom, $sourceUrlTo, Version $versionTo) |
|
| 50 | |||
| 51 | /** |
||
| 52 | * {@inheritdoc} |
||
| 53 | */ |
||
| 54 | 2 | public function generateReleaseUrl($sourceUrl, Version $version) |
|
| 58 | } |
||
| 59 |