Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.116.42.143
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
spatie /
image-optimizer /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Optimizers
[ DIR ]
drwxr-xr-x
2021-04-22 09:00
DummyLogger.php
764
B
-rw-r--r--
2021-04-22 09:00
Image.php
716
B
-rw-r--r--
2021-04-22 09:00
Optimizer.php
943
B
-rw-r--r--
2021-04-22 09:00
OptimizerChain.php
2.53
KB
-rw-r--r--
2021-04-22 09:00
OptimizerChainFactory.php
1.48
KB
-rw-r--r--
2021-04-22 09:00
Save
Rename
<?php namespace Spatie\ImageOptimizer; interface Optimizer { /** * Returns the name of the binary to be executed. * * @return string */ public function binaryName(): string; /** * Determines if the given image can be handled by the optimizer. * * @param \Spatie\ImageOptimizer\Image $image * * @return bool */ public function canHandle(Image $image): bool; /** * Set the path to the image that should be optimized. * * @param string $imagePath * * @return $this */ public function setImagePath(string $imagePath); /** * Set the options the optimizer should use. * * @param array $options * * @return $this */ public function setOptions(array $options = []); /** * Get the command that should be executed. * * @return string */ public function getCommand(): string; }