mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 17:45:28 +00:00
use namespace
This commit is contained in:
parent
b8b59e6f56
commit
039565460e
1 changed files with 3 additions and 2 deletions
|
|
@ -4,6 +4,7 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace Yggverse\Yoda\Entity\Browser\Container;
|
namespace Yggverse\Yoda\Entity\Browser\Container;
|
||||||
|
|
||||||
|
use \Yggverse\Yoda\Entity\Browser\Container;
|
||||||
use \Yggverse\Yoda\Entity\Browser\Container\Page;
|
use \Yggverse\Yoda\Entity\Browser\Container\Page;
|
||||||
|
|
||||||
class Tab
|
class Tab
|
||||||
|
|
@ -11,7 +12,7 @@ class Tab
|
||||||
public \GtkNotebook $gtk;
|
public \GtkNotebook $gtk;
|
||||||
|
|
||||||
// Dependencies
|
// Dependencies
|
||||||
public \Yggverse\Yoda\Entity\Browser\Container $container;
|
public Container $container;
|
||||||
|
|
||||||
// Defaults
|
// Defaults
|
||||||
private bool $_reorderable = true;
|
private bool $_reorderable = true;
|
||||||
|
|
@ -21,7 +22,7 @@ class Tab
|
||||||
private array $_page = [];
|
private array $_page = [];
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
\Yggverse\Yoda\Entity\Browser\Container $container
|
Container $container
|
||||||
) {
|
) {
|
||||||
// Init dependency
|
// Init dependency
|
||||||
$this->container = $container;
|
$this->container = $container;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue