| 1 | <?php |
||
| 12 | abstract class OnlineMinifier extends Minifier |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var \s9e\TextFormatter\Configurator\Helpers\Http\Client Client used to perform HTTP request |
||
| 16 | */ |
||
| 17 | public $client; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var integer Timeout in seconds |
||
| 21 | */ |
||
| 22 | public $timeout = 10; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Return a cached instance of the HTTP client |
||
| 26 | * |
||
| 27 | * @return \s9e\TextFormatter\Configurator\Helpers\Http\Client |
||
| 28 | */ |
||
| 29 | 8 | protected function getHttpClient() |
|
| 38 | } |