![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/medad.corals.io/vendor/doctrine/dbal/lib/Doctrine/DBAL/Logging/ |
<?php namespace Doctrine\DBAL\Logging; use Doctrine\Deprecations\Deprecation; use function var_dump; use const PHP_EOL; /** * A SQL logger that logs to the standard output using echo/var_dump. * * @deprecated */ class EchoSQLLogger implements SQLLogger { public function __construct() { Deprecation::trigger( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/3935', 'EchoSQLLogger is deprecated without replacement, move the code into your project if you rely on it.' ); } /** * {@inheritdoc} */ public function startQuery($sql, ?array $params = null, ?array $types = null) { echo $sql . PHP_EOL; if ($params) { var_dump($params); } if (! $types) { return; } var_dump($types); } /** * {@inheritdoc} */ public function stopQuery() { } }