| 1 | <?php |
||
| 13 | class HostedMinifier extends Minifier |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var integer Compression level used to compress the request's payload |
||
| 17 | */ |
||
| 18 | public $gzLevel = 5; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var integer |
||
| 22 | */ |
||
| 23 | public $timeout = 20; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var string |
||
| 27 | */ |
||
| 28 | public $url = 'http://s9e-textformatter.rhcloud.com/minifier/minify.php'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | 2 | public function minify($src) |
|
| 67 | } |