use namespace

This commit is contained in:
yggverse 2024-07-20 11:36:10 +03:00
parent a9dfdc1cca
commit 3823e5674d
2 changed files with 8 additions and 4 deletions

View file

@ -4,18 +4,20 @@ declare(strict_types=1);
namespace Yggverse\Yoda\Entity\Browser\Menu\Tab;
use \Yggverse\Yoda\Entity\Browser\Menu\Tab;
class Add
{
public \GtkMenuItem $gtk;
// Dependencies
public \Yggverse\Yoda\Entity\Browser\Menu\Tab $tab;
public Tab $tab;
// Defaults
private string $_label = 'Add';
public function __construct(
\Yggverse\Yoda\Entity\Browser\Menu\Tab $tab
Tab $tab
) {
// Init dependencies
$this->tab = $tab;

View file

@ -4,19 +4,21 @@ declare(strict_types=1);
namespace Yggverse\Yoda\Entity\Browser\Menu\Tab;
use \Yggverse\Yoda\Entity\Browser\Menu\Tab;
class Close
{
public \GtkMenuItem $gtk;
// Dependencies
public \Yggverse\Yoda\Entity\Browser\Menu\Tab $tab;
public Tab $tab;
// Defaults
private string $_label = 'Close';
private string $_tooltip = 'Close active tab (double click on tab)';
public function __construct(
\Yggverse\Yoda\Entity\Browser\Menu\Tab $tab
Tab $tab
) {
// Init dependencies
$this->tab = $tab;