18 lines
257 B
PHP
18 lines
257 B
PHP
|
<?php
|
||
|
|
||
|
namespace Aweos\Resizer\Compressors;
|
||
|
|
||
|
class DefaultCompressor extends Compressor {
|
||
|
|
||
|
public function make(string $path): array
|
||
|
{
|
||
|
return [];
|
||
|
}
|
||
|
|
||
|
public function shouldGenerateVersions(): bool
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
}
|