mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 06:13:35 +02:00
24 lines
318 B
PHP
24 lines
318 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\PendingCalls\Concerns;
|
|
|
|
use Pest\Support\Description;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
trait Describable
|
|
{
|
|
/**
|
|
* @var array<int, Description>
|
|
*/
|
|
public array $__describing;
|
|
|
|
/**
|
|
* @var array<int, Description>
|
|
*/
|
|
public array $describing = [];
|
|
}
|