fixed coding standard

This commit is contained in:
Jan Schumann 2011-03-15 14:16:19 +01:00
parent bbfb1ffb53
commit c7cde09d1c
3 changed files with 6 additions and 8 deletions

View File

View File

@ -3,7 +3,7 @@
/* /*
* This file is part of the Symfony package. * 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 * For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code. * 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. * 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> * @author Jan Schumann <js@schumann-it.com>
*/ */
abstract class PdoProfilerStorage implements ProfilerStorageInterface abstract class PdoProfilerStorage implements ProfilerStorageInterface
@ -154,9 +154,7 @@ abstract class PdoProfilerStorage implements ProfilerStorageInterface
{ {
try { try {
$stmt = $db->prepare($query); $stmt = $db->prepare($query);
} } catch (\Exception $e) {
catch (\Exception $e)
{
$stmt = false; $stmt = false;
} }

View File