Files
pest/src/PendingCalls/Concerns/Describable.php
2024-04-28 12:02:42 +01:00

22 lines
355 B
PHP

<?php
declare(strict_types=1);
namespace Pest\PendingCalls\Concerns;
/**
* @internal
*/
trait Describable
{
/**
* Note: this is property is not used; however, it gets added automatically by rector php.
*/
public string $__describing;
/**
* The describing of the test case.
*/
public ?string $describing = null;
}