for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Abacaphiliac\Doctrine;
class PsrSqlParamsLogger extends PsrSqlLogger
{
protected function getStartQueryContext($sql, array $params = null, array $types = null)
return \array_merge(parent::getStartQueryContext($sql, $params, $types), [
'params' => $params,
]);
}