Skip to content

Commit

Permalink
Implement Application core class
Browse files Browse the repository at this point in the history
  • Loading branch information
Kern046 committed Apr 15, 2017
1 parent 10dc1f3 commit d4873c5
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions system/Classes/Worker/Application.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

namespace Asylamba\Classes\Worker;

class Application {
/** @var Container **/
protected $container;

public function boot()
{
$this->container = new Container();
}

public function run()
{

}

/**
* e
* @return Container
*/
public function getContainer()
{
return $this->container;
}
}

0 comments on commit d4873c5

Please sign in to comment.