Browse Source

init history tab entity

main
yggverse 2 months ago
parent
commit
8f46ba1398
  1. 22
      src/Entity/Tab/History.php

22
src/Entity/Tab/History.php

@ -0,0 +1,22 @@ @@ -0,0 +1,22 @@
<?php
declare(strict_types=1);
namespace Yggverse\Yoda\Entity\Tab;
class History
{
public \Yggverse\Yoda\Entity\App $app;
public object $config;
public function __construct(
\Yggverse\Yoda\Entity\App $app
) {
// Init app
$this->app = $app;
// Init config
$this->config = \Yggverse\Yoda\Model\File::getConfig()->app->tab->page;
}
}
Loading…
Cancel
Save