Skip to content

Commit c882ba3

Browse files
committed
Use internal ->name() function instead of removed ->getName()
1 parent e96f71e commit c882ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ protected function getCollectionName(): string
205205
{
206206
$class = new ReflectionClass($this);
207207

208-
return sprintf('%s.%s', $class->getShortName(), hash('crc32b', $this->getName()));
208+
return sprintf('%s.%s', $class->getShortName(), hash('crc32b', $this->name()));
209209
}
210210

211211
/**

0 commit comments

Comments
 (0)