for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controllers;
class Controller
{
protected $container;
public function __construct($container)
$this->container = $container;
}
public function __get($property)
if ($this->container->{$property}) {
return $this->container->{$property};