mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 12:12:18 +00:00
Fix #3715
This commit is contained in:
@@ -50,7 +50,6 @@ use League\Fractal\Resource\Collection as FractalCollection;
|
||||
use League\Fractal\Resource\Item;
|
||||
use Log;
|
||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||
|
||||
/**
|
||||
* Class TransactionController
|
||||
*/
|
||||
@@ -59,9 +58,7 @@ class TransactionController extends Controller
|
||||
use TransactionFilter;
|
||||
|
||||
private TransactionGroupRepositoryInterface $groupRepository;
|
||||
|
||||
private JournalAPIRepositoryInterface $journalAPIRepository;
|
||||
|
||||
private JournalRepositoryInterface $repository;
|
||||
|
||||
|
||||
|
@@ -42,23 +42,12 @@ class TransactionUpdateRequest extends FormRequest
|
||||
{
|
||||
use TransactionValidation, GroupValidation, ConvertsDataTypes;
|
||||
|
||||
/** @var array Array values. */
|
||||
private $arrayFields;
|
||||
|
||||
/** @var array Boolean values. */
|
||||
private $booleanFields;
|
||||
|
||||
/** @var array Fields that contain date values. */
|
||||
private $dateFields;
|
||||
|
||||
/** @var array Fields that contain integer values. */
|
||||
private $integerFields;
|
||||
|
||||
/** @var array Fields that contain string values. */
|
||||
private $stringFields;
|
||||
|
||||
/** @var array Fields that contain text (with newlines) */
|
||||
private $textareaFields;
|
||||
private array $arrayFields;
|
||||
private array $booleanFields;
|
||||
private array $dateFields;
|
||||
private array $integerFields;
|
||||
private array $stringFields;
|
||||
private array $textareaFields;
|
||||
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user