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 Oct 10, 2024
1 parent b20f1c6 commit aa65e57
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions extend.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@

return [
(new Extend\Frontend('forum'))
->js(__DIR__ . '/js/dist/forum.js')
->css(__DIR__ . '/resources/less/forum.less'),
->js(__DIR__.'/js/dist/forum.js')
->css(__DIR__.'/resources/less/forum.less'),

(new Extend\Frontend('admin'))
->js(__DIR__ . '/js/dist/admin.js')
->css(__DIR__ . '/resources/less/admin.less'),
->js(__DIR__.'/js/dist/admin.js')
->css(__DIR__.'/resources/less/admin.less'),

new Extend\Locales(__DIR__ . '/resources/locale'),
new Extend\Locales(__DIR__.'/resources/locale'),

(new Extend\Model(Discussion::class))
->belongsTo('bestAnswerPost', Post::class, 'best_answer_post_id')
Expand All @@ -50,7 +50,7 @@
->cast('best_answer_notified', 'boolean'),

(new Extend\View())
->namespace('fof-best-answer', __DIR__ . '/resources/views'),
->namespace('fof-best-answer', __DIR__.'/resources/views'),

(new Extend\Model(Tag::class))
->cast('is_qna', 'boolean')
Expand Down

0 comments on commit aa65e57

Please sign in to comment.