v1.1.0
The use of sigils to define services created some asymmetry
$c['foo()'] = function($x) {...};
$c['foo'](123);
This allows you read with or without the sigil
$c['foo()'](123);
$c['foo'](123);
The use of sigils to define services created some asymmetry
$c['foo()'] = function($x) {...};
$c['foo'](123);
This allows you read with or without the sigil
$c['foo()'](123);
$c['foo'](123);