mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +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;
|
|
|
|
} |