mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
use namespace
This commit is contained in:
parent
838c93b6f8
commit
477f4ff441
1 changed files with 4 additions and 3 deletions
|
|
@ -4,6 +4,7 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace Yggverse\Yoda\Entity\Browser\Header;
|
namespace Yggverse\Yoda\Entity\Browser\Header;
|
||||||
|
|
||||||
|
use \Yggverse\Yoda\Entity\Browser\Header;
|
||||||
use \Yggverse\Yoda\Entity\Browser\Menu;
|
use \Yggverse\Yoda\Entity\Browser\Menu;
|
||||||
|
|
||||||
class Navigation
|
class Navigation
|
||||||
|
|
@ -11,16 +12,16 @@ class Navigation
|
||||||
public \GtkMenuButton $gtk;
|
public \GtkMenuButton $gtk;
|
||||||
|
|
||||||
// Dependencies
|
// Dependencies
|
||||||
public \Yggverse\Yoda\Entity\Browser\Header $header;
|
public Header $header;
|
||||||
|
|
||||||
// Requirements
|
// Requirements
|
||||||
public \Yggverse\Yoda\Entity\Browser\Menu $menu;
|
public Menu $menu;
|
||||||
|
|
||||||
// Defaults
|
// Defaults
|
||||||
private string $_tooltip = 'Navigation';
|
private string $_tooltip = 'Navigation';
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
\Yggverse\Yoda\Entity\Browser\Header $header
|
Header $header
|
||||||
) {
|
) {
|
||||||
// Init dependencies
|
// Init dependencies
|
||||||
$this->header = $header;
|
$this->header = $header;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue