Files
pest/src/PendingCalls/Concerns/Describable.php
2026-03-10 21:06:28 +00:00

28 lines
467 B
PHP

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