Skip to content

Instantly share code, notes, and snippets.

@Simplesmente
Last active October 26, 2016 00:09
Show Gist options
  • Save Simplesmente/1c44688484934fe8f51d0efa8a60b0df to your computer and use it in GitHub Desktop.
Save Simplesmente/1c44688484934fe8f51d0efa8a60b0df to your computer and use it in GitHub Desktop.
<?php
declare(strict_types=1);
namespace MeuFramework\Application;
use MeuFramework\Container\Container;
/**
* @author André Teles
*/
class Application
{
/**
* @var Object MeuFramework\Container\Container;
*/
protected $container;
/**
* @return void
*/
public function __construct()
{
$this->container = new Container;
}
/**
* @return MeuFramework\Container\Container
*/
public function getContainer():Container
{
return $this->container;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment