mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
26 lines
426 B
PHP
26 lines
426 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.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
public array $__describing;
|
|
|
|
/**
|
|
* The describing of the test case.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
public array $describing = [];
|
|
}
|