mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
use namespace
This commit is contained in:
parent
81595f0b79
commit
c1c5ad08be
1 changed files with 9 additions and 7 deletions
|
|
@ -4,6 +4,8 @@ declare(strict_types=1);
|
|||
|
||||
namespace Yggverse\Yoda\Entity\Browser\Container;
|
||||
|
||||
use \Yggverse\Yoda\Entity\Browser\Container;
|
||||
|
||||
use \Yggverse\Yoda\Entity\Browser\Container\Page\Title;
|
||||
use \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar;
|
||||
use \Yggverse\Yoda\Entity\Browser\Container\Page\Progressbar;
|
||||
|
|
@ -17,17 +19,17 @@ class Page
|
|||
public \GtkBox $gtk;
|
||||
|
||||
// Dependencies
|
||||
public \Yggverse\Yoda\Entity\Browser\Container $container;
|
||||
public Container $container;
|
||||
|
||||
// Requirements
|
||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Title $title;
|
||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar $navbar;
|
||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Progressbar $progressbar;
|
||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Content $content;
|
||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Response $response;
|
||||
public Title $title;
|
||||
public Navbar $navbar;
|
||||
public Progressbar $progressbar;
|
||||
public Content $content;
|
||||
public Response $response;
|
||||
|
||||
public function __construct(
|
||||
\Yggverse\Yoda\Entity\Browser\Container $container
|
||||
Container $container
|
||||
) {
|
||||
// Init dependencies
|
||||
$this->container = $container;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue