mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
Update sniff violations
This commit is contained in:
parent
f4c5f62807
commit
7625c260cf
@ -107,8 +107,9 @@ class HtmlCommand extends Command
|
|||||||
|
|
||||||
// Our PHAR deployment can't handle the GlobAsset typically used here
|
// Our PHAR deployment can't handle the GlobAsset typically used here
|
||||||
foreach (new \DirectoryIterator($cssAssetPath) as $fileInfo) {
|
foreach (new \DirectoryIterator($cssAssetPath) as $fileInfo) {
|
||||||
if ($fileInfo->isDot()) continue;
|
if ($fileInfo->isDot() || !$fileInfo->isFile()) {
|
||||||
if (!$fileInfo->isFile()) continue;
|
continue;
|
||||||
|
}
|
||||||
array_push($cssAssets, new FileAsset($fileInfo->getPathname()));
|
array_push($cssAssets, new FileAsset($fileInfo->getPathname()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user