for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Db3v4l\Core\SqlExecutor\Forked;
use Db3v4l\API\Interfaces\SqlExecutor\Forked\CommandExecutor;
use Db3v4l\Util\Process;
/**
* Executes sql queries via a symfony console command based on Doctrine
*/
class Doctrine extends PDO implements CommandExecutor
{
const EXECUTION_STRATEGY = 'Doctrine';
}