Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
eisberg committed Nov 22, 2019
1 parent e28b8a9 commit 1e6f514
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

use Doctrine\DBAL\Driver\OCI8\Driver;
use Doctrine\Tests\DbalFunctionalTestCase;
use function array_key_exists;
use function is_int;
use function extension_loaded;

class StatementTest extends DbalFunctionalTestCase
Expand Down Expand Up @@ -49,7 +51,7 @@ public function testQueryConversion(string $query, array $params, array $expecte
*/
public function testStatementBindParameters(string $query, array $params, array $expected) : void
{
$stmt = $this->connection->prepare($query);
$stmt = $this->connection->prepare($query);
$hasZeroIndex = array_key_exists(0, $params);

foreach ($params as $key => $val) {
Expand Down

0 comments on commit 1e6f514

Please sign in to comment.