Skip to content

Commit

Permalink
Update HTML class imports in layout files. (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw authored Feb 21, 2024
1 parent e7a58ec commit e0b69af
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions src/Framework/resource/layout/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

use PHPForge\Html\A;
use PHPForge\Html\Group\Div;
use PHPForge\Html\Layout\Footer;
use PHPForge\Html\Span;
use PHPForge\Html\Semantic\Footer;
use PHPForge\Html\Textual\A;
use PHPForge\Html\Textual\Span;
use sjaakp\icon\Icon;
use yii\web\View;

Expand Down
2 changes: 1 addition & 1 deletion src/Framework/resource/layout/head.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

use PHPForge\Html\Layout\Head;
use PHPForge\Html\Document\Head;
use PHPForge\Html\Metadata\Meta;
use PHPForge\Html\Metadata\Title;
use yii\helpers\Html;
Expand Down
6 changes: 3 additions & 3 deletions src/Framework/resource/layout/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
declare(strict_types=1);

use App\Framework\Asset\AppAsset;
use PHPForge\Html\Document\Body;
use PHPForge\Html\Document\Html;
use PHPForge\Html\Group\Div;
use PHPForge\Html\Layout\Body;
use PHPForge\Html\Layout\Header;
use PHPForge\Html\Layout\Html;
use PHPForge\Html\Semantic\Header;
use sjaakp\icon\Icon;
use yii\bootstrap5\Breadcrumbs;
use yii\web\View;
Expand Down
2 changes: 1 addition & 1 deletion src/UseCase/Contact/view/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use PHPForge\Html\FormControl\Input\Submit;
use PHPForge\Html\Group\Div;
use PHPForge\Html\Group\P;
use PHPForge\Html\H;
use PHPForge\Html\Helper\Encode;
use PHPForge\Html\Semantic\H;
use PHPForge\Html\Tag;
use yii\bootstrap5\ActiveForm;
use yii\captcha\Captcha;
Expand Down
2 changes: 1 addition & 1 deletion src/UseCase/Site/view/404.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
declare(strict_types=1);

use PHPForge\Html\Group\Div;
use PHPForge\Html\H;
use PHPForge\Html\Helper\Encode;
use PHPForge\Html\Img;
use PHPForge\Html\Semantic\H;
use yii\web\View;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/UseCase/Site/view/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use PHPForge\Html\Group\Div;
use PHPForge\Html\Group\P;
use PHPForge\Html\H;
use PHPForge\Html\Helper\Encode;
use PHPForge\Html\Semantic\H;
use PHPForge\Html\Tag;
use yii\web\View;

Expand Down
2 changes: 1 addition & 1 deletion src/UseCase/Site/view/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use PHPForge\Html\Group\Div;
use PHPForge\Html\Group\P;
use PHPForge\Html\H;
use PHPForge\Html\Helper\Encode;
use PHPForge\Html\Semantic\H;
use yii\web\View;

/**
Expand Down

0 comments on commit e0b69af

Please sign in to comment.