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
|
||||
foreach (new \DirectoryIterator($cssAssetPath) as $fileInfo) {
|
||||
if ($fileInfo->isDot()) continue;
|
||||
if (!$fileInfo->isFile()) continue;
|
||||
if ($fileInfo->isDot() || !$fileInfo->isFile()) {
|
||||
continue;
|
||||
}
|
||||
array_push($cssAssets, new FileAsset($fileInfo->getPathname()));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user