| 1 | <?php declare(strict_types=1); |
||
| 13 | class System extends ExternalModule implements CompressInterface |
||
| 14 | { |
||
| 15 | protected $id = 'core'; |
||
| 16 | |||
| 17 | /** {@inheritdoc} */ |
||
| 18 | public function beforeCompress(&$obj = null, array &$code = null) |
||
| 22 | |||
| 23 | /** {@inheritdoc} */ |
||
| 24 | public function afterCompress(&$obj = null, array &$code = null) |
||
| 28 | } |
||
| 29 |