1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
-
-
- namespace Doctrine\DBAL\Logging;
-
-
- class EchoSQLLogger implements SQLLogger
- {
-
-
- public function startQuery($sql, array $params = null, array $types = null)
- {
- echo $sql . PHP_EOL;
-
- if ($params) {
- var_dump($params);
- }
-
- if ($types) {
- var_dump($types);
- }
- }
-
-
-
- public function stopQuery()
- {
-
- }
- }
|