Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
imorland authored and StyleCIBot committed Jan 11, 2021
1 parent 280b48f commit 109ac29
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions extend.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,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')
->route('/followedUsers', 'followed.users.view'),

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

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

(new Extend\Model(User::class))
->relationship('followedUsers', function (AbstractModel $model) {
Expand All @@ -47,7 +47,7 @@
}),

(new Extend\View())
->namespace('ianm-follow-users', __DIR__ . '/resources/views'),
->namespace('ianm-follow-users', __DIR__.'/resources/views'),

(new Extend\Notification())
->type(Notifications\NewFollowerBlueprint::class, BasicUserSerializer::class, ['alert'])
Expand Down

0 comments on commit 109ac29

Please sign in to comment.