for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Jared King <[email protected]>
*
* @link http://jaredtking.com
* @copyright 2015 Jared King
* @license MIT
*/
namespace Infuse\Services;
class Memcache
{
public function __invoke($app)
$memcacheConfig = $app['config']->get('memcache');
$memcache = new \Memcache();
$memcache->connect($memcacheConfig['host'], $memcacheConfig['port']);
return $memcache;
}