for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EntWeChat\Foundation\ServiceProviders;
use EntWeChat\Fundamental\API;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
/**
* Class FundamentalServiceProvider.
*/
class FundamentalServiceProvider implements ServiceProviderInterface
{
* {@inheritdoc}.
public function register(Container $pimple)
$pimple['fundamental.api'] = function ($pimple) {
return new API($pimple['access_token']);
};
}