Change NodeProviderInterface::getNode() to return Hexadecimal

This commit is contained in:
Ben Ramsey
2020-02-29 22:35:45 -06:00
parent 4ffd156a84
commit 86c37eff4c
13 changed files with 196 additions and 135 deletions
@@ -18,7 +18,7 @@ class StaticNodeProviderTest extends TestCase
{
$staticNode = new StaticNodeProvider($node);
$this->assertSame($expectedNode, $staticNode->getNode());
$this->assertSame($expectedNode, $staticNode->getNode()->toString());
}
/**