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 JAQB\Services;
use JAQB\QueryBuilder;
class Database
{
public function __invoke($app)
return new QueryBuilder($app['pdo']);
}