From dde4a60de98fcfdf17c82d8abe280c5d96be27ec Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Thu, 19 May 2022 09:38:59 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Commands/HydeBuildStaticSiteCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Commands/HydeBuildStaticSiteCommand.php b/src/Commands/HydeBuildStaticSiteCommand.php index b0a44de0..65c68519 100644 --- a/src/Commands/HydeBuildStaticSiteCommand.php +++ b/src/Commands/HydeBuildStaticSiteCommand.php @@ -176,14 +176,14 @@ public function postBuildActions(): void $actionTime = microtime(true); $this->comment('Generating sitemap...'); file_put_contents(Hyde::getSiteOutputPath('sitemap.xml'), SitemapService::generateSitemap()); - $this->line(' > Created sitemap.xml in ' .$this->getExecutionTimeInMs($actionTime)."ms\n"); + $this->line(' > Created sitemap.xml in '.$this->getExecutionTimeInMs($actionTime)."ms\n"); } if (RssFeedService::canGenerateFeed()) { $actionTime = microtime(true); $this->comment('Generating RSS feed...'); file_put_contents(Hyde::getSiteOutputPath(RssFeedService::getDefaultOutputFilename()), RssFeedService::generateFeed()); - $this->line(' > Created '.RssFeedService::getDefaultOutputFilename().' in ' .$this->getExecutionTimeInMs($actionTime)."ms\n"); + $this->line(' > Created '.RssFeedService::getDefaultOutputFilename().' in '.$this->getExecutionTimeInMs($actionTime)."ms\n"); } }