mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 09:35:28 +00:00
use namespace
This commit is contained in:
parent
02bfe604f6
commit
f292ac45af
1 changed files with 8 additions and 6 deletions
|
|
@ -4,6 +4,8 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace Yggverse\Yoda\Entity\Browser\Container\Page;
|
namespace Yggverse\Yoda\Entity\Browser\Container\Page;
|
||||||
|
|
||||||
|
use \Yggverse\Yoda\Entity\Browser\Container\Page;
|
||||||
|
|
||||||
use \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\Base;
|
use \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\Base;
|
||||||
use \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\Go;
|
use \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\Go;
|
||||||
use \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\History;
|
use \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\History;
|
||||||
|
|
@ -14,19 +16,19 @@ class Navbar
|
||||||
public \GtkBox $gtk;
|
public \GtkBox $gtk;
|
||||||
|
|
||||||
// Dependencies
|
// Dependencies
|
||||||
public \Yggverse\Yoda\Entity\Browser\Container\Page $page;
|
public Page $page;
|
||||||
|
|
||||||
// Requirements
|
// Requirements
|
||||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\Base $base;
|
public Base $base;
|
||||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\Go $go;
|
public Go $go;
|
||||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\History $history;
|
public History $history;
|
||||||
public \Yggverse\Yoda\Entity\Browser\Container\Page\Navbar\Request $request;
|
public Request $request;
|
||||||
|
|
||||||
// Defaults
|
// Defaults
|
||||||
private int $_margin = 8;
|
private int $_margin = 8;
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
\Yggverse\Yoda\Entity\Browser\Container\Page $page
|
Page $page
|
||||||
) {
|
) {
|
||||||
// Init dependencies
|
// Init dependencies
|
||||||
$this->page = $page;
|
$this->page = $page;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue