diff --git a/lib/Cli/SymfonyOptimize.php b/lib/Cli/SymfonyOptimize.php
index a0d2986..a3eba7c 100644
--- a/lib/Cli/SymfonyOptimize.php
+++ b/lib/Cli/SymfonyOptimize.php
@@ -40,7 +40,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln('BxOptimization set up.');
} catch (\Exception $e) {
- $output->writeln(''.get_class($e).': '.$e->getMessage().'');
+ $output->writeln('' . get_class($e) . ': ' . $e->getMessage() . '');
}
}
}
diff --git a/lib/Finder/FilesFinder.php b/lib/Finder/FilesFinder.php
index 792f37c..9d62cae 100644
--- a/lib/Finder/FilesFinder.php
+++ b/lib/Finder/FilesFinder.php
@@ -15,7 +15,7 @@ class FilesFinder implements FinderInterface
public function __construct($path)
{
$basePath = $_SERVER['DOCUMENT_ROOT'];
- $path = $basePath .'/'. trim($path, '\/');
+ $path = $basePath . '/' . trim($path, '\/');
if (empty($path) || !(is_dir($path) || is_file($path)) || !is_writable($path)) {
throw new Exception('Путь не может быть пустым или нет доступа');
}
diff --git a/lib/Handler/CssHandler.php b/lib/Handler/CssHandler.php
index 470de98..b4928ed 100644
--- a/lib/Handler/CssHandler.php
+++ b/lib/Handler/CssHandler.php
@@ -15,7 +15,7 @@ class CssHandler extends Handler
public function handleQueue()
{
foreach ($this->files as $file) {
- echo get_class()." обрабатывает файл: $file\n";
+ echo get_class() . " обрабатывает файл: $file\n";
}
// TODO: Implement handleQueue() method.
}
diff --git a/lib/Handler/Handler.php b/lib/Handler/Handler.php
index 770f051..19c26dd 100644
--- a/lib/Handler/Handler.php
+++ b/lib/Handler/Handler.php
@@ -16,7 +16,7 @@ abstract class Handler implements HandlerInterface
public function canHandleFile($file = null)
{
if (is_null($file)) {
- throw new \Exception('В обработчик '.get_class()." передано неверное имя файла: $file");
+ throw new \Exception('В обработчик ' . get_class() . " передано неверное имя файла: $file");
}
$ext = strtolower(pathinfo($file, PATHINFO_EXTENSION));
@@ -38,7 +38,7 @@ public function queueFile($file)
public function handleQueue()
{
foreach ($this->files as $file) {
- echo get_class()." обрабатывает файл: $file\n";
+ echo get_class() . " обрабатывает файл: $file\n";
}
// TODO: Implement handleQueue() method.
}
diff --git a/lib/Handler/HandlerInterface.php b/lib/Handler/HandlerInterface.php
index 3f7cbcc..9d3feed 100644
--- a/lib/Handler/HandlerInterface.php
+++ b/lib/Handler/HandlerInterface.php
@@ -15,14 +15,14 @@ interface HandlerInterface
*/
public function canHandleFile($file);
- /**
- * Записывает файл в очередь на обработку.
- *
- * @param string $file Путь к файлу
- *
- * @return void
- */
- public function queueFile($file);
+ /**
+ * Записывает файл в очередь на обработку.
+ *
+ * @param string $file Путь к файлу
+ *
+ * @return void
+ */
+ public function queueFile($file);
/**
* Обрабатывает файлы в очереди.
diff --git a/lib/Handler/HandlerTools.php b/lib/Handler/HandlerTools.php
index 3b0a92c..a044cf0 100644
--- a/lib/Handler/HandlerTools.php
+++ b/lib/Handler/HandlerTools.php
@@ -49,7 +49,7 @@ class HandlerTools
],
];
- public static function getBinaryHandler($type){
+ public static function getBinaryHandler($type) {
$handlers = self::getBinaryHandlers();
@@ -59,7 +59,7 @@ public static function getBinaryHandler($type){
}
- public static function getBinaryHandlers(){
+ public static function getBinaryHandlers() {
$os = strtolower(PHP_OS);
if (substr($os, 0, 3) == "win") {
diff --git a/lib/Handler/ImageHandler.php b/lib/Handler/ImageHandler.php
index a350e69..68162fb 100644
--- a/lib/Handler/ImageHandler.php
+++ b/lib/Handler/ImageHandler.php
@@ -32,7 +32,7 @@ public function handleQueue()
$ext = strtolower(pathinfo($file, PATHINFO_EXTENSION));
- if($handlers[$ext]) {
+ if ($handlers[$ext]) {
switch ($ext) {
case 'png':
@@ -40,12 +40,12 @@ public function handleQueue()
break;
case 'jpg':
case 'jpeg':
- $command = sprintf($this->args[$ext], escapeshellarg($file), escapeshellarg($file . ".original"));
+ $command = sprintf($this->args[$ext], escapeshellarg($file), escapeshellarg($file . ".original"));
break;
}
if (!file_exists($file . ".original") && $command) {
copy($file, $file . ".original");
- exec($handlers[$ext] . $command);
+ exec($handlers[$ext] . $command);
}
} else {
diff --git a/lib/Install/Installer.php b/lib/Install/Installer.php
index f00fb32..326f439 100644
--- a/lib/Install/Installer.php
+++ b/lib/Install/Installer.php
@@ -25,7 +25,7 @@ class Installer
*/
public static function getBinaries(Event $event)
{
- $dir = self::getRootPath().'/bin';
+ $dir = self::getRootPath() . '/bin';
if (!file_exists($dir)) {
mkdir($dir);
@@ -36,11 +36,11 @@ public static function getBinaries(Event $event)
foreach (self::$extByPlatforms as $ext) {
foreach (self::$tools as $tool) {
file_put_contents(
- $dir.'/'.$tool.$ext,
- fopen('https://github.com/nosilver4u/ewww-image-optimizer/raw/master/binaries/'.$tool.$ext, 'r')
+ $dir . '/' . $tool . $ext,
+ fopen('https://github.com/nosilver4u/ewww-image-optimizer/raw/master/binaries/' . $tool . $ext, 'r')
);
- chmod($dir.'/'.$tool.$ext, 0754);
- $event->getIO()->write($tool.$ext);
+ chmod($dir . '/' . $tool . $ext, 0754);
+ $event->getIO()->write($tool . $ext);
}
}