We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd7c23e commit 98b52ccCopy full SHA for 98b52cc
1 file changed
src/compatibility-intf.php
@@ -14,11 +14,15 @@
14
interface ISupplementalDriver extends Driver
15
{
16
}
17
+} elseif (!interface_exists(ISupplementalDriver::class)) {
18
+ class_alias(Driver::class, ISupplementalDriver::class);
19
+}
20
+
21
+if (false) {
22
/** @deprecated use Nette\Database\Conventions */
23
interface IConventions extends Conventions
24
25
-} elseif (!interface_exists(ISupplementalDriver::class)) {
- class_alias(Driver::class, ISupplementalDriver::class);
26
+} elseif (!interface_exists(IConventions::class)) {
27
class_alias(Conventions::class, IConventions::class);
28
0 commit comments