21 lines
278 B
PHP
21 lines
278 B
PHP
|
<?php
|
||
|
|
||
|
namespace Core\Application;
|
||
|
|
||
|
use Illuminate\Container\Container;
|
||
|
|
||
|
class Application
|
||
|
{
|
||
|
private Container $container;
|
||
|
|
||
|
public function __construct(Container $container)
|
||
|
{
|
||
|
$this->container = $container;
|
||
|
}
|
||
|
|
||
|
public function run()
|
||
|
{
|
||
|
//todo: implement run logic.
|
||
|
}
|
||
|
}
|