mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 03:39:00 +00:00
21 lines
332 B
PHP
21 lines
332 B
PHP
![]() |
<?php
|
||
|
|
||
|
|
||
|
namespace Tests\Objects;
|
||
|
|
||
|
use Closure;
|
||
|
|
||
|
/**
|
||
|
* Class Field
|
||
|
*/
|
||
|
class Field
|
||
|
{
|
||
|
public ?Closure $expectedReturn;
|
||
|
public string $expectedReturnType;
|
||
|
public string $fieldPosition;
|
||
|
public string $fieldTitle;
|
||
|
public string $fieldType;
|
||
|
public ?array $ignorableFields;
|
||
|
public string $title;
|
||
|
|
||
|
}
|