Skip to content

Commit

Permalink
♻️ Rename UrlContent
Browse files Browse the repository at this point in the history
  • Loading branch information
matyo91 committed Sep 18, 2024
1 parent 22ee75e commit dc2bd8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Command/ScrapCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use App\IpStrategy\FlattenIpStrategy;
use App\Job\Scrap\ScrapUrlJob;
use App\Job\Scrap\ScrapUrlsJob;
use App\Model\UrlContent;
use App\Model\Scrap\UrlContent;
use Fiber;
use Flow\AsyncHandler\DeferAsyncHandler;
use Flow\Driver\FiberDriver;
Expand Down
2 changes: 1 addition & 1 deletion src/Job/Scrap/ScrapUrlJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace App\Job\Scrap;

use App\Model\UrlContent;
use App\Model\Scrap\UrlContent;
use CurlMultiHandle;
use Fiber;
use Flow\JobInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Job/Scrap/ScrapUrlsJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace App\Job\Scrap;

use App\Model\UrlContent;
use App\Model\Scrap\UrlContent;
use Fiber;
use Flow\JobInterface;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace App\Model;
namespace App\Model\Scrap;

class UrlContent
{
Expand Down

0 comments on commit dc2bd8e

Please sign in to comment.