golden hour
/var/softaculous/sitepad/editor/site-data/plugins/speedycache/lib/PathConverter
⬆️ Go Up
Upload
File/Folder
Size
Actions
Converter.php
5.66 KB
Del
OK
ConverterInterface.php
528 B
Del
OK
LICENSE
1.03 KB
Del
OK
NoConverter.php
437 B
Del
OK
composer.json
937 B
Del
OK
ruleset.xml
202 B
Del
OK
Edit: ConverterInterface.php
<?php namespace SpeedyCache\lib\PathConverter; /** * Convert file paths. * * Please report bugs on https://github.com/matthiasmullie/path-converter/issues * * @author Matthias Mullie <pathconverter@mullie.eu> * @copyright Copyright (c) 2015, Matthias Mullie. All rights reserved * @license MIT License */ interface ConverterInterface { /** * Convert file paths. * * @param string $path The path to be converted * * @return string The new path */ public function convert($path); }
Save