Skip to content

Commit 3133b2f

Browse files
committed
add doctrine/coding-standard
1 parent 98924ec commit 3133b2f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"psr-4": { "FOD\\DBALClickHouse\\Tests\\": "tests/" }
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "^7.0"
26+
"phpunit/phpunit": "^7.0",
27+
"doctrine/coding-standard": "^4.0"
2728
}
2829
}

tests/ArraysTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace FOD\DBALClickHouse\Tests;
1313

1414
use FOD\DBALClickHouse\Connection;
15-
use FOD\DBALClickHouse\Types\ArrayType;
15+
use FOD\DBALClickHouse\Types\AbstractArrayType;
1616
use PHPUnit\Framework\TestCase;
1717

1818
/**
@@ -28,7 +28,7 @@ class ArraysTest extends TestCase
2828
public function setUp()
2929
{
3030
$this->connection = CreateConnectionTest::createConnection();
31-
ArrayType::registerArrayTypes($this->connection->getDatabasePlatform());
31+
AbstractArrayType::registerArrayTypes($this->connection->getDatabasePlatform());
3232
}
3333

3434
public function tearDown()

0 commit comments

Comments
 (0)