|
@@ -3,7 +3,7 @@
|
|
|
/*
|
|
|
* This file is part of the Symfony package.
|
|
|
*
|
|
|
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
+ * (c) Fabien Potencier <fabien@symfony.com>
|
|
|
*
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
* file that was distributed with this source code.
|
|
@@ -16,7 +16,7 @@ use Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface;
|
|
|
/**
|
|
|
* Base PDO storage for profiling information in a PDO database.
|
|
|
*
|
|
|
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
+ * @author Fabien Potencier <fabien@symfony.com>
|
|
|
* @author Jan Schumann <js@schumann-it.com>
|
|
|
*/
|
|
|
abstract class PdoProfilerStorage implements ProfilerStorageInterface
|
|
@@ -154,9 +154,7 @@ abstract class PdoProfilerStorage implements ProfilerStorageInterface
|
|
|
{
|
|
|
try {
|
|
|
$stmt = $db->prepare($query);
|
|
|
- }
|
|
|
- catch (\Exception $e)
|
|
|
- {
|
|
|
+ } catch (\Exception $e) {
|
|
|
$stmt = false;
|
|
|
}
|
|
|
|