Skip to content

Commit

Permalink
Fixed CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Mar 18, 2024
1 parent 34b215d commit f49bbec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/Console/Commands/UpdateAchievementsForPostWithLikes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace App\Console\Commands;

use App\Achievements\Contents\AuthorHighInteraction;
use App\Achievements\Contents\AuthorInteraction;
use App\Achievements\Contents\RecognizedAuthor;
use App\Models\Post;
Expand Down Expand Up @@ -36,7 +37,7 @@ public function handle()
->chunk(100, function (Collection $posts) {
$posts->each(function (Post $post) {
if ($post->likers_count >= 30) {
$post->author->reward(RecognizedAuthor::class);
$post->author->reward(AuthorHighInteraction::class);
}

$post->author->reward(AuthorInteraction::class);
Expand Down
1 change: 0 additions & 1 deletion tests/Unit/Modifications/BlockquoteModifierTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public function testItAddsCssClassesToBlockquoteTags(): void
<blockquote><strong>Note</strong> This is a note.</blockquote>
<blockquote>[!WARNING] This is a warning.</blockquote>
<blockquote>[!NOTE] This is a tip.</blockquote>
<blockquote><p><br>Более подробную документацию по использованию Vite с Laravel можно найти в нашей <a href="/docs/10.x/vite"> специализированной документации по сборке и компиляции ваших ресурсов.</a>.</p></blockquote>
';

$modifiedHtml = $modifier->handle($html, function ($content) {
Expand Down

0 comments on commit f49bbec

Please sign in to comment.