From f37e7cf393d48a1be14d7bc207cea88274f8dfcf Mon Sep 17 00:00:00 2001 From: Mathieu Jaumotte Date: Thu, 4 Aug 2022 14:46:10 +0200 Subject: [PATCH] moving files into separate folders for better overview --- .../{ => SocialWorkAggregators}/JobAggregator.php | 2 +- .../ReferrerAggregator.php | 2 +- .../{ => SocialWorkAggregators}/ScopeAggregator.php | 2 +- .../Filter/{ => SocialWorkFilters}/JobFilter.php | 2 +- .../Filter/{ => SocialWorkFilters}/ScopeFilter.php | 2 +- .../{ => SocialWorkFilters}/SocialWorkTypeFilter.php | 2 +- .../config/services/exports_social_actions.yaml | 12 ++++++------ 7 files changed, 12 insertions(+), 12 deletions(-) rename src/Bundle/ChillPersonBundle/Export/Aggregator/{ => SocialWorkAggregators}/JobAggregator.php (96%) rename src/Bundle/ChillPersonBundle/Export/Aggregator/{ => SocialWorkAggregators}/ReferrerAggregator.php (96%) rename src/Bundle/ChillPersonBundle/Export/Aggregator/{ => SocialWorkAggregators}/ScopeAggregator.php (96%) rename src/Bundle/ChillPersonBundle/Export/Filter/{ => SocialWorkFilters}/JobFilter.php (97%) rename src/Bundle/ChillPersonBundle/Export/Filter/{ => SocialWorkFilters}/ScopeFilter.php (97%) rename src/Bundle/ChillPersonBundle/Export/Filter/{ => SocialWorkFilters}/SocialWorkTypeFilter.php (99%) diff --git a/src/Bundle/ChillPersonBundle/Export/Aggregator/JobAggregator.php b/src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/JobAggregator.php similarity index 96% rename from src/Bundle/ChillPersonBundle/Export/Aggregator/JobAggregator.php rename to src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/JobAggregator.php index aa8e6f173..2177d4554 100644 --- a/src/Bundle/ChillPersonBundle/Export/Aggregator/JobAggregator.php +++ b/src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/JobAggregator.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Chill\PersonBundle\Export\Aggregator; +namespace Chill\PersonBundle\Export\Aggregator\SocialWorkAggregators; use Chill\MainBundle\Export\AggregatorInterface; use Chill\MainBundle\Repository\UserJobRepository; diff --git a/src/Bundle/ChillPersonBundle/Export/Aggregator/ReferrerAggregator.php b/src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/ReferrerAggregator.php similarity index 96% rename from src/Bundle/ChillPersonBundle/Export/Aggregator/ReferrerAggregator.php rename to src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/ReferrerAggregator.php index 91e181012..a7ea78c3b 100644 --- a/src/Bundle/ChillPersonBundle/Export/Aggregator/ReferrerAggregator.php +++ b/src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/ReferrerAggregator.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Chill\PersonBundle\Export\Aggregator; +namespace Chill\PersonBundle\Export\Aggregator\SocialWorkAggregators; use Chill\MainBundle\Export\AggregatorInterface; use Chill\MainBundle\Repository\UserRepository; diff --git a/src/Bundle/ChillPersonBundle/Export/Aggregator/ScopeAggregator.php b/src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/ScopeAggregator.php similarity index 96% rename from src/Bundle/ChillPersonBundle/Export/Aggregator/ScopeAggregator.php rename to src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/ScopeAggregator.php index 743677d8e..aec969585 100644 --- a/src/Bundle/ChillPersonBundle/Export/Aggregator/ScopeAggregator.php +++ b/src/Bundle/ChillPersonBundle/Export/Aggregator/SocialWorkAggregators/ScopeAggregator.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Chill\PersonBundle\Export\Aggregator; +namespace Chill\PersonBundle\Export\Aggregator\SocialWorkAggregators; use Chill\MainBundle\Export\AggregatorInterface; use Chill\MainBundle\Repository\ScopeRepository; diff --git a/src/Bundle/ChillPersonBundle/Export/Filter/JobFilter.php b/src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/JobFilter.php similarity index 97% rename from src/Bundle/ChillPersonBundle/Export/Filter/JobFilter.php rename to src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/JobFilter.php index b9aaabb6f..7eb7d6142 100644 --- a/src/Bundle/ChillPersonBundle/Export/Filter/JobFilter.php +++ b/src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/JobFilter.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Chill\PersonBundle\Export\Filter; +namespace Chill\PersonBundle\Export\Filter\SocialWorkFilters; use Chill\MainBundle\Entity\UserJob; use Chill\MainBundle\Export\FilterInterface; diff --git a/src/Bundle/ChillPersonBundle/Export/Filter/ScopeFilter.php b/src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/ScopeFilter.php similarity index 97% rename from src/Bundle/ChillPersonBundle/Export/Filter/ScopeFilter.php rename to src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/ScopeFilter.php index d4f4524b3..a91344645 100644 --- a/src/Bundle/ChillPersonBundle/Export/Filter/ScopeFilter.php +++ b/src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/ScopeFilter.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Chill\PersonBundle\Export\Filter; +namespace Chill\PersonBundle\Export\Filter\SocialWorkFilters; use Chill\MainBundle\Entity\Scope; use Chill\MainBundle\Export\FilterInterface; diff --git a/src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkTypeFilter.php b/src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/SocialWorkTypeFilter.php similarity index 99% rename from src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkTypeFilter.php rename to src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/SocialWorkTypeFilter.php index 8f8d70349..bf28fb695 100644 --- a/src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkTypeFilter.php +++ b/src/Bundle/ChillPersonBundle/Export/Filter/SocialWorkFilters/SocialWorkTypeFilter.php @@ -1,6 +1,6 @@