for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByJG\AnyDataset\Store;
use ByJG\Util\Uri;
use PDO;
class PdoLiteral extends DbPdoDriver
{
public function __construct(Uri $connString, $preOptions = null, $postOptions = null)
$postOptions = [
PDO::ATTR_EMULATE_PREPARES => true
];
parent::__construct($connString, $preOptions, $postOptions);
}