mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
20 lines
345 B
PHP
20 lines
345 B
PHP
<?php
|
|
|
|
|
|
namespace Tests\Objects;
|
|
use Closure;
|
|
|
|
/**
|
|
* Class TestMandatoryField
|
|
*/
|
|
class TestMandatoryField
|
|
{
|
|
public string $title;
|
|
public string $fieldTitle;
|
|
public string $fieldPosition;
|
|
public string $fieldType;
|
|
public string $expectedReturnType;
|
|
public ?Closure $expectedReturn;
|
|
public ?array $ignorableFields;
|
|
|
|
} |