Skip to content

Commit 6ac8057

Browse files
committed
Use internal ->name() function instead of removed ->getName()
1 parent b20d60a commit 6ac8057

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
@@ -202,7 +202,7 @@ protected function getCollectionName(): string
202202
{
203203
$class = new ReflectionClass($this);
204204

205-
return sprintf('%s.%s', $class->getShortName(), hash('crc32b', $this->getName()));
205+
return sprintf('%s.%s', $class->getShortName(), hash('crc32b', $this->name()));
206206
}
207207

208208
/**

0 commit comments

Comments
 (0)