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 Jul 12, 2023
1 parent d74c420 commit 623eb5e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion framework/core/src/Forum/ForumServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function register(): void
});
});

$assets->jsDirectory(function (SourceCollector $sources) use ($container) {
$assets->jsDirectory(function (SourceCollector $sources) {
$sources->addDirectory(__DIR__.'/../../js/dist/forum');
});

Expand Down
7 changes: 7 additions & 0 deletions framework/core/src/Frontend/Compiler/Concerns/HasSources.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/

namespace Flarum\Frontend\Compiler\Concerns;

use Flarum\Frontend\Compiler\Source\SourceCollector;
Expand Down
7 changes: 7 additions & 0 deletions framework/core/src/Frontend/Compiler/JsDirectoryCompiler.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/

namespace Flarum\Frontend\Compiler;

use Flarum\Frontend\Compiler\Concerns\HasSources;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<?php

/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/

namespace Flarum\Frontend\Compiler\Source;

use InvalidArgumentException;
Expand Down

0 comments on commit 623eb5e

Please sign in to comment.