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 c27618d commit 79310a3Copy full SHA for 79310a3
src/Chain/ChainAwareInterface.php
@@ -6,5 +6,5 @@
6
7
interface ChainAwareInterface
8
{
9
- public function setChain(Chain $chain): void;
+ public function setChain(ChainInterface $chain): void;
10
}
src/Chain/ChainAwareTrait.php
@@ -6,9 +6,9 @@
trait ChainAwareTrait
- private Chain $chain;
+ private ChainInterface $chain;
11
- public function setChain(Chain $chain): void
+ public function setChain(ChainInterface $chain): void
12
13
$this->chain = $chain;
14
0 commit comments