mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55: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;
|
||||
|
||||
use \Yggverse\Yoda\Entity\Browser\Container;
|
||||
use \Yggverse\Yoda\Entity\Browser\Container\Page;
|
||||
|
||||
class Tab
|
||||
|
|
@ -11,7 +12,7 @@ class Tab
|
|||
public \GtkNotebook $gtk;
|
||||
|
||||
// Dependencies
|
||||
public \Yggverse\Yoda\Entity\Browser\Container $container;
|
||||
public Container $container;
|
||||
|
||||
// Defaults
|
||||
private bool $_reorderable = true;
|
||||
|
|
@ -21,7 +22,7 @@ class Tab
|
|||
private array $_page = [];
|
||||
|
||||
public function __construct(
|
||||
\Yggverse\Yoda\Entity\Browser\Container $container
|
||||
Container $container
|
||||
) {
|
||||
// Init dependency
|
||||
$this->container = $container;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue