mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
enshort namespaces
This commit is contained in:
parent
2d7b3d1965
commit
ee2f8ba3b1
21 changed files with 93 additions and 133 deletions
|
|
@ -4,20 +4,20 @@ declare(strict_types=1);
|
|||
|
||||
namespace Yggverse\Yoda\Entity\Browser;
|
||||
|
||||
use \Yggverse\Yoda\Entity\Browser\Container\Tab;
|
||||
use \Yggverse\Yoda\Entity\Browser;
|
||||
|
||||
class Container
|
||||
{
|
||||
public \GtkBox $gtk;
|
||||
|
||||
// Dependencies
|
||||
public \Yggverse\Yoda\Entity\Browser $browser;
|
||||
public Browser $browser;
|
||||
|
||||
// Requirements
|
||||
public \Yggverse\Yoda\Entity\Browser\Container\Tab $tab;
|
||||
public Container\Tab $tab;
|
||||
|
||||
public function __construct(
|
||||
\Yggverse\Yoda\Entity\Browser $browser
|
||||
Browser $browser
|
||||
) {
|
||||
// Init dependency
|
||||
$this->browser = $browser;
|
||||
|
|
@ -28,7 +28,7 @@ class Container
|
|||
);
|
||||
|
||||
// Init tab
|
||||
$this->tab = new Tab(
|
||||
$this->tab = new Container\Tab(
|
||||
$this
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue