mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-05 06:23:53 +09:00
Update composer dependencies
This commit is contained in:
@@ -18,16 +18,16 @@ class HashNodeTest extends AbstractNodeTest
|
||||
{
|
||||
public function getToStringConversionTestData()
|
||||
{
|
||||
return array(
|
||||
array(new HashNode(new ElementNode(), 'id'), 'Hash[Element[*]#id]'),
|
||||
);
|
||||
return [
|
||||
[new HashNode(new ElementNode(), 'id'), 'Hash[Element[*]#id]'],
|
||||
];
|
||||
}
|
||||
|
||||
public function getSpecificityValueTestData()
|
||||
{
|
||||
return array(
|
||||
array(new HashNode(new ElementNode(), 'id'), 100),
|
||||
array(new HashNode(new ElementNode(null, 'id'), 'class'), 101),
|
||||
);
|
||||
return [
|
||||
[new HashNode(new ElementNode(), 'id'), 100],
|
||||
[new HashNode(new ElementNode(null, 'id'), 'class'), 101],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user