Skip to content

Commit

Permalink
Merge pull request #2 from Dumkaaa/analysis-XVnwAg
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
Dumkaaa authored Mar 31, 2017
2 parents a37e2fb + 4a72c64 commit 965cee7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Finder/FilesFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function findFiles($path = null)
$basePath = $_SERVER['DOCUMENT_ROOT'];

return (array) new \RecursiveIteratorIterator(
new \RecursiveDirectoryIterator($basePath . '/' . $path)
new \RecursiveDirectoryIterator($basePath.'/'.$path)
);
}
}
2 changes: 1 addition & 1 deletion lib/Handler/HandlerProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class HandlerProcessor
/** @var array Стандартные обработчики */
private $defaultHandlers = [
'image' => __NAMESPACE__.'\ImageHandler',
'css' => __NAMESPACE__ .'\CssHandler',
'css' => __NAMESPACE__.'\CssHandler',
];

/** @var array Включенные обработчики */
Expand Down

0 comments on commit 965cee7

Please sign in to comment.