Skip to content

Instantly share code, notes, and snippets.

View maximecolin's full-sized avatar

Maxime COLIN maximecolin

View GitHub Profile
<?php
class Container extends Pimple
{
public function __construct()
{
$values = [
'foobar' => function ($c) { /* do something */ },
'foobar.extended' => $this->extend('foobar', function ($o, $c) { /* do something */ })
];