Skip to content

Commit

Permalink
Merge pull request #29 from lara-zeus/analysis-AP7Wbk
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
atmonshi authored Aug 15, 2022
2 parents da4f36e + 83d6741 commit ba811b3
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 ba811b3

Please sign in to comment.