Skip to content

Commit

Permalink
Update PHPForge\Html namespaces. (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw authored Feb 21, 2024
1 parent 7856951 commit e7a58ec
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/Framework/resource/layout/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

use PHPForge\Html\A;
use PHPForge\Html\Div;
use PHPForge\Html\Group\Div;
use PHPForge\Html\Layout\Footer;
use PHPForge\Html\Span;
use sjaakp\icon\Icon;
Expand Down
4 changes: 2 additions & 2 deletions src/Framework/resource/layout/head.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
declare(strict_types=1);

use PHPForge\Html\Layout\Head;
use PHPForge\Html\Layout\Meta;
use PHPForge\Html\Layout\Title;
use PHPForge\Html\Metadata\Meta;
use PHPForge\Html\Metadata\Title;
use yii\helpers\Html;
use yii\web\View;

Expand Down
2 changes: 1 addition & 1 deletion src/Framework/resource/layout/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

use App\Framework\Asset\AppAsset;
use PHPForge\Html\Div;
use PHPForge\Html\Group\Div;
use PHPForge\Html\Layout\Body;
use PHPForge\Html\Layout\Header;
use PHPForge\Html\Layout\Html;
Expand Down
1 change: 0 additions & 1 deletion src/UseCase/Contact/Index/IndexAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace App\UseCase\Contact\Index;

use App\UseCase\Contact\ContactEvent;
use App\UseCase\Contact\ContactForm;
use yii\base\Action;
use yii\base\InvalidConfigException;
use yii\symfonymailer\Mailer;
Expand Down
6 changes: 3 additions & 3 deletions src/UseCase/Contact/view/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
declare(strict_types=1);

use App\UseCase\Contact\ContactForm;
use PHPForge\Html\Div;
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\Input\Submit;
use PHPForge\Html\P;
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 @@ -2,7 +2,7 @@

declare(strict_types=1);

use PHPForge\Html\Div;
use PHPForge\Html\Group\Div;
use PHPForge\Html\H;
use PHPForge\Html\Helper\Encode;
use PHPForge\Html\Img;
Expand Down
4 changes: 2 additions & 2 deletions src/UseCase/Site/view/about.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

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

Expand Down
4 changes: 2 additions & 2 deletions src/UseCase/Site/view/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

declare(strict_types=1);

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

/**
Expand Down

0 comments on commit e7a58ec

Please sign in to comment.