mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
Move factories to separate folder.
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
declare(strict_types = 1);
|
|
||||||
/**
|
/**
|
||||||
* ActionFactory.php
|
* ActionFactory.php
|
||||||
* Copyright (C) 2016 Robert Horlings
|
* Copyright (C) 2016 Robert Horlings
|
||||||
@@ -8,10 +7,13 @@ declare(strict_types = 1);
|
|||||||
* of the MIT license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace FireflyIII\Rules\Actions;
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Rules\Factory;
|
||||||
|
|
||||||
use FireflyIII\Exceptions\FireflyException;
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
use FireflyIII\Models\RuleAction;
|
use FireflyIII\Models\RuleAction;
|
||||||
|
use FireflyIII\Rules\Actions\ActionInterface;
|
||||||
use FireflyIII\Support\Domain;
|
use FireflyIII\Support\Domain;
|
||||||
|
|
||||||
/**
|
/**
|
@@ -1,5 +1,4 @@
|
|||||||
<?php
|
<?php
|
||||||
declare(strict_types = 1);
|
|
||||||
/**
|
/**
|
||||||
* TriggerFactory.php
|
* TriggerFactory.php
|
||||||
* Copyright (C) 2016 Robert Horlings
|
* Copyright (C) 2016 Robert Horlings
|
||||||
@@ -8,10 +7,14 @@ declare(strict_types = 1);
|
|||||||
* of the MIT license. See the LICENSE file for details.
|
* of the MIT license. See the LICENSE file for details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace FireflyIII\Rules\Triggers;
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
namespace FireflyIII\Rules\Factory;
|
||||||
|
|
||||||
use FireflyIII\Exceptions\FireflyException;
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
use FireflyIII\Models\RuleTrigger;
|
use FireflyIII\Models\RuleTrigger;
|
||||||
|
use FireflyIII\Rules\Triggers\AbstractTrigger;
|
||||||
|
use FireflyIII\Rules\Triggers\TriggerInterface;
|
||||||
use FireflyIII\Support\Domain;
|
use FireflyIII\Support\Domain;
|
||||||
|
|
||||||
/**
|
/**
|
@@ -14,10 +14,10 @@ use FireflyIII\Models\Rule;
|
|||||||
use FireflyIII\Models\RuleAction;
|
use FireflyIII\Models\RuleAction;
|
||||||
use FireflyIII\Models\RuleTrigger;
|
use FireflyIII\Models\RuleTrigger;
|
||||||
use FireflyIII\Models\TransactionJournal;
|
use FireflyIII\Models\TransactionJournal;
|
||||||
use FireflyIII\Rules\Actions\ActionFactory;
|
use FireflyIII\Rules\Factory\ActionFactory;
|
||||||
use FireflyIII\Rules\Actions\ActionInterface;
|
use FireflyIII\Rules\Actions\ActionInterface;
|
||||||
use FireflyIII\Rules\Triggers\AbstractTrigger;
|
use FireflyIII\Rules\Triggers\AbstractTrigger;
|
||||||
use FireflyIII\Rules\Triggers\TriggerFactory;
|
use FireflyIII\Rules\Factory\TriggerFactory;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Log;
|
use Log;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user