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.
setName
1 parent 80ad3ba commit 8ddecf6Copy full SHA for 8ddecf6
src/Concerns/RunTestsInCoroutine.php
@@ -14,7 +14,7 @@
14
use Throwable;
15
16
/**
17
- * @method string getName()
+ * @method string name()
18
*/
19
trait RunTestsInCoroutine
20
{
@@ -51,7 +51,7 @@ final protected function runTestsInCoroutine(...$arguments)
51
final protected function runTest(): mixed
52
53
if (extension_loaded('swoole') && \Swoole\Coroutine::getCid() === -1 && $this->enableCoroutine) {
54
- $this->realTestName = $this->getName();
+ $this->realTestName = $this->name();
55
parent::setName('runTestsInCoroutine');
56
}
57
0 commit comments