Skip to content

Commit e40e367

Browse files
committed
Merge branch 'fix-connectioninterface' of https://github.com/tyrsson/phpdb into fix-connectioninterface
2 parents b371957 + 5a9cb98 commit e40e367

File tree

60 files changed

+2612
-637
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2612
-637
lines changed

composer.lock

Lines changed: 59 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
<exclude>./test/unit/Adapter/Driver/Pdo/ConnectionIntegrationTest.php</exclude>
1717
<exclude>./test/unit/Adapter/Driver/Pdo/StatementIntegrationTest.php</exclude>
1818
<exclude>./test/unit/Adapter/AdapterAwareTraitTest.php</exclude>
19-
<exclude>./test/unit/TableGateway</exclude>
2019
</testsuite>
2120
<testsuite name="integration test">
2221
<directory>./test/integration</directory>

src/Feature/FeatureInterface.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace PhpDb\Feature;
6+
7+
interface FeatureInterface
8+
{
9+
public function getName(): string;
10+
11+
/** @return array<string, string[]> */
12+
public function getMagicMethodSpecifications(): array;
13+
}

0 commit comments

Comments
 (0)