Skip to content

Commit

Permalink
Update Markdown Concern namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Apr 27, 2022
1 parent dc120c3 commit 34754f2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Concerns/Markdown/HasConfigurableMarkdownFeatures.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Hyde\Framework\Actions\ServiceActions;
namespace Hyde\Framework\Concerns\Markdown;

use Hyde\Framework\Features;
use Hyde\Framework\Markdown;
Expand Down
4 changes: 3 additions & 1 deletion src/Concerns/Markdown/HasMarkdownFeatures.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

namespace Hyde\Framework\Actions\ServiceActions;
namespace Hyde\Framework\Concerns\Markdown;

use function config;

/**
* Global Markdown Feature Handler.
Expand Down
4 changes: 3 additions & 1 deletion src/Concerns/Markdown/HasTorchlightIntegration.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php

namespace Hyde\Framework\Actions\ServiceActions;
namespace Hyde\Framework\Concerns\Markdown;

use function config;

trait HasTorchlightIntegration
{
Expand Down
2 changes: 1 addition & 1 deletion src/Markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Hyde\Framework;

use Hyde\Framework\Actions\ServiceActions\HasMarkdownFeatures;
use Hyde\Framework\Concerns\Markdown\HasMarkdownFeatures;

/**
* General interface for Markdown services.
Expand Down
4 changes: 2 additions & 2 deletions src/Services/MarkdownConverterService.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Hyde\Framework\Services;

use Hyde\Framework\Actions\ServiceActions\HasConfigurableMarkdownFeatures;
use Hyde\Framework\Actions\ServiceActions\HasTorchlightIntegration;
use Hyde\Framework\Concerns\Markdown\HasConfigurableMarkdownFeatures;
use Hyde\Framework\Concerns\Markdown\HasTorchlightIntegration;
use League\CommonMark\CommonMarkConverter;
use League\CommonMark\Extension\HeadingPermalink\HeadingPermalinkExtension;
use Torchlight\Commonmark\V2\TorchlightExtension;
Expand Down

0 comments on commit 34754f2

Please sign in to comment.