mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
22 lines
No EOL
396 B
PHP
22 lines
No EOL
396 B
PHP
<?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;
|
|
}
|
|
} |