Really basic application object.

This commit is contained in:
2020-12-15 21:10:42 +01:00
parent e11023d1c9
commit cf30a1280d
4 changed files with 255 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
<?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.
}
}