mirror of
https://github.com/pestphp/pest.git
synced 2026-04-21 06:27:28 +02:00
28 lines
467 B
PHP
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 = [];
|
|
}
|