Skip to content

Commit

Permalink
Move keyword checks to content
Browse files Browse the repository at this point in the history
  • Loading branch information
Baspa committed Aug 4, 2023
1 parent 74b632d commit 44916ac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Vormkracht10\Seo\Checks\Meta;
namespace Vormkracht10\Seo\Checks\Content;

use Illuminate\Http\Client\Response;
use Illuminate\Support\Str;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Vormkracht10\Seo\Checks\Meta;
namespace Vormkracht10\Seo\Checks\Content;

use Illuminate\Http\Client\Response;
use Illuminate\Support\Str;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use Illuminate\Support\Facades\Http;
use Symfony\Component\DomCrawler\Crawler;
use Vormkracht10\Seo\Checks\Meta\KeywordInFirstParagraphCheck;
use Vormkracht10\Seo\Checks\Content\KeywordInFirstParagraphCheck;

it('can perform the keyword in first paragraph check on a page with the keyword in the first paragraph', function () {
$check = new KeywordInFirstParagraphCheck();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use Illuminate\Support\Facades\Http;
use Symfony\Component\DomCrawler\Crawler;
use Vormkracht10\Seo\Checks\Meta\KeywordInTitleCheck;
use Vormkracht10\Seo\Checks\Content\KeywordInTitleCheck;

it('can perform the keyword in title check on a page with the keyword in the title', function () {
$check = new KeywordInTitleCheck();
Expand Down

0 comments on commit 44916ac

Please sign in to comment.