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 19af1ac commit 74546d7Copy full SHA for 74546d7
src/Metadata/Source/AbstractSource.php
@@ -62,13 +62,10 @@ abstract class AbstractSource implements MetadataInterface
62
/** @psalm-var MetadataData */
63
protected array $data = [];
64
65
- /**
66
- * Constructor
67
- */
68
public function __construct(
69
protected AdapterInterface&SchemaAwareInterface $adapter
70
) {
71
- $this->defaultSchema = $adapter->getCurrentSchema() ?: self::DEFAULT_SCHEMA;
+ $this->defaultSchema = $this->adapter->getCurrentSchema() ?: self::DEFAULT_SCHEMA;
72
}
73
74
/**
0 commit comments