Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Aug 15, 2022
1 parent da4f36e commit 83d6741
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Http/Livewire/Faq.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function render()
{
seo()
->title(__('FAQ'))
->description(__('FAQs') . ' ' . config('zeus-sky.site_description', 'Laravel'))
->description(__('FAQs').' '.config('zeus-sky.site_description', 'Laravel'))
->site(config('zeus-sky.site_title', 'Laravel'))
->rawTag('favicon', '<link rel="icon" type="image/x-icon" href="'.asset('favicon/favicon.ico').'">')
->rawTag('<meta name="theme-color" content="'.config('zeus-sky.site_color').'" />')
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Livewire/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function render()
}
seo()
->title($this->page->title)
->description(($this->page->description ?? '') . ' ' . config('zeus-sky.site_description', 'Laravel'))
->description(($this->page->description ?? '').' '.config('zeus-sky.site_description', 'Laravel'))
->site(config('zeus-sky.site_title', 'Laravel'))
->rawTag('favicon', '<link rel="icon" type="image/x-icon" href="'.asset('favicon/favicon.ico').'">')
->rawTag('<meta name="theme-color" content="'.config('zeus-sky.site_color').'" />')
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Livewire/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function render()

seo()
->title($this->post->title)
->description(($this->post->description ?? '') . ' ' . config('zeus-sky.site_description', 'Laravel'))
->description(($this->post->description ?? '').' '.config('zeus-sky.site_description', 'Laravel'))
->site(config('zeus-sky.site_title', 'Laravel'))
->rawTag('favicon', '<link rel="icon" type="image/x-icon" href="'.asset('favicon/favicon.ico').'">')
->rawTag('<meta name="theme-color" content="'.config('zeus-sky.site_color').'" />')
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Livewire/Posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function render()

seo()
->title(__('Posts'))
->description(__('Posts') . ' ' . config('zeus-sky.site_description', 'Laravel'))
->description(__('Posts').' '.config('zeus-sky.site_description', 'Laravel'))
->site(config('zeus-sky.site_title', 'Laravel'))
->rawTag('favicon', '<link rel="icon" type="image/x-icon" href="'.asset('favicon/favicon.ico').'">')
->rawTag('<meta name="theme-color" content="'.config('zeus-sky.site_color').'" />')
Expand Down

0 comments on commit 83d6741

Please sign in to comment.