Move all entities to component folders

Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
This commit is contained in:
Dillon-Brown 2021-03-25 14:29:50 +00:00
parent 7044598f34
commit 3aed1df849
121 changed files with 133 additions and 132 deletions

View file

@ -1,6 +1,6 @@
<?php
namespace App\Entity;
namespace App\Data\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -1,6 +1,6 @@
<?php
namespace App\Entity;
namespace App\Data\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -4,7 +4,7 @@
namespace App\Data\LegacyHandler;
use App\Entity\Record;
use App\Data\Entity\Record;
class ListData
{

View file

@ -4,7 +4,7 @@ namespace App\Data\LegacyHandler;
use ApiBeanMapper;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Entity\Record;
use App\Data\Entity\Record;
use App\Engine\LegacyHandler\LegacyScopeState;
use App\Service\ModuleNameMapperInterface;
use App\Service\RecordProviderInterface;

View file

@ -4,7 +4,7 @@ namespace App\Data\LegacyHandler;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;
use App\Entity\RecordList;
use App\Data\Entity\RecordList;
use App\Service\ModuleNameMapperInterface;
use App\Service\RecordListProviderInterface;
use InvalidArgumentException;

View file

@ -4,7 +4,7 @@
namespace App\Data\LegacyHandler;
use App\Entity\Record;
use App\Data\Entity\Record;
use App\Service\ModuleNameMapperInterface;
class RecordMapper

View file

@ -4,7 +4,7 @@ namespace App\DataPersister;
use ApiPlatform\Core\DataPersister\ContextAwareDataPersisterInterface;
use ApiPlatform\Core\Exception\InvalidResourceException;
use App\Entity\Process;
use App\Process\Entity\Process;
use App\Service\ProcessHandlerInterface;
use App\Service\ProcessHandlerRegistry;
use Symfony\Component\Security\Core\Exception\AccessDeniedException;

View file

@ -4,7 +4,7 @@ namespace App\DataPersister;
use ApiPlatform\Core\DataPersister\ContextAwareDataPersisterInterface;
use ApiPlatform\Core\Exception\InvalidResourceException;
use App\Entity\Record;
use App\Data\Entity\Record;
use App\Service\RecordProviderInterface;
class RecordDataPersister implements ContextAwareDataPersisterInterface

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\AppListStrings;
use App\Languages\Entity\AppListStrings;
use App\Languages\LegacyHandler\AppListStringsHandler;
/**

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\AppStrings;
use App\Languages\Entity\AppStrings;
use App\Languages\LegacyHandler\AppStringsHandler;
/**

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\BatchedStatistics;
use App\Statistics\Entity\BatchedStatistics;
use App\Service\StatisticsManagerInterface;
class BatchedStatisticsItemDataProvider implements ItemDataProviderInterface, RestrictedDataProviderInterface

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\FieldDefinition;
use App\FieldDefinitions\Entity\FieldDefinition;
use App\FieldDefinitions\LegacyHandler\FieldDefinitionsHandler;
use Exception;

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\ModStrings;
use App\Languages\Entity\ModStrings;
use App\Languages\LegacyHandler\ModStringsHandler;
/**

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\Navbar;
use App\Navbar\Entity\Navbar;
use App\Service\NavigationProviderInterface;
use Symfony\Component\Security\Core\Security;

View file

@ -8,7 +8,7 @@ use ApiPlatform\Core\DataProvider\ArrayPaginator;
use ApiPlatform\Core\DataProvider\ContextAwareCollectionDataProviderInterface;
use ApiPlatform\Core\DataProvider\PaginatorInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\Process;
use App\Process\Entity\Process;
class ProcessCollectionDataProvider implements ContextAwareCollectionDataProviderInterface, RestrictedDataProviderInterface
{

View file

@ -5,7 +5,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use ApiPlatform\Core\Exception\ItemNotFoundException;
use App\Entity\Process;
use App\Process\Entity\Process;
class ProcessItemDataProvider implements ItemDataProviderInterface, RestrictedDataProviderInterface
{

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\Record;
use App\Data\Entity\Record;
use App\Service\RecordProviderInterface;
use Exception;

View file

@ -5,7 +5,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Data\LegacyHandler\RecordListHandler;
use App\Entity\RecordList;
use App\Data\Entity\RecordList;
use Exception;
/**

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Service\StatisticsProviderRegistry;
class StatisticsItemDataProvider implements ItemDataProviderInterface, RestrictedDataProviderInterface

View file

@ -7,7 +7,7 @@ use ApiPlatform\Core\DataProvider\ArrayPaginator;
use ApiPlatform\Core\DataProvider\ContextAwareCollectionDataProviderInterface;
use ApiPlatform\Core\DataProvider\PaginatorInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\SystemConfig;
use App\SystemConfig\Entity\SystemConfig;
use App\Service\SystemConfigProviderInterface;
/**

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\SystemConfig;
use App\SystemConfig\Entity\SystemConfig;
use App\Service\SystemConfigProviderInterface;
/**
@ -56,4 +56,4 @@ final class SystemConfigItemDataProvider implements ItemDataProviderInterface, R
return $this->systemConfigProvider->getSystemConfig($id);
}
}
}

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\ThemeImages;
use App\Themes\Entity\ThemeImages;
use App\Service\ThemeImageService;
/**
@ -56,4 +56,4 @@ final class ThemeImagesItemDataProvider implements ItemDataProviderInterface, Re
return $this->themeImageService->get($id);
}
}
}

View file

@ -6,7 +6,7 @@ use ApiPlatform\Core\DataProvider\ArrayPaginator;
use ApiPlatform\Core\DataProvider\ContextAwareCollectionDataProviderInterface;
use ApiPlatform\Core\DataProvider\PaginatorInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\UserPreference;
use App\UserPreferences\Entity\UserPreference;
use App\Service\UserPreferencesProviderInterface;
/**

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\UserPreference;
use App\UserPreferences\Entity\UserPreference;
use App\Service\UserPreferencesProviderInterface;
/**
@ -55,4 +55,4 @@ final class UserPreferenceItemDataProvider implements ItemDataProviderInterface,
): ?UserPreference {
return $this->userPreferenceService->getUserPreference($id);
}
}
}

View file

@ -4,7 +4,7 @@ namespace App\DataProvider;
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface;
use App\Entity\ViewDefinition;
use App\ViewDefinitions\Entity\ViewDefinition;
use App\Service\ViewDefinitionsProviderInterface;
use Exception;

View file

@ -1,6 +1,6 @@
<?php
namespace App\Entity;
namespace App\FieldDefinitions\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -2,7 +2,7 @@
namespace App\FieldDefinitions\LegacyHandler;
use App\Entity\FieldDefinition;
use App\FieldDefinitions\Entity\FieldDefinition;
interface FieldDefinitionMapperInterface
{

View file

@ -3,7 +3,7 @@
namespace App\FieldDefinitions\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;
use App\Entity\FieldDefinition;
use App\FieldDefinitions\Entity\FieldDefinition;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Service\FieldDefinitionsProviderInterface;
use App\Service\ModuleNameMapperInterface;

View file

@ -2,7 +2,7 @@
namespace App\FieldDefinitions\LegacyHandler;
use App\Entity\FieldDefinition;
use App\FieldDefinitions\Entity\FieldDefinition;
class GroupedFieldDefinitionMapper implements FieldDefinitionMapperInterface, GroupedFieldDefinitionMapperInterface
{

View file

@ -2,7 +2,7 @@
namespace App\FieldDefinitions\LegacyHandler;
use App\Entity\FieldDefinition;
use App\FieldDefinitions\Entity\FieldDefinition;
class LegacyGroupedFieldDefinitionMapper implements FieldDefinitionMapperInterface
{

View file

@ -2,7 +2,7 @@
namespace App\FieldDefinitions\LegacyHandler;
use App\Entity\FieldDefinition;
use App\FieldDefinitions\Entity\FieldDefinition;
class LegacyReadOnlyFieldDefinitionMapper implements FieldDefinitionMapperInterface
{

View file

@ -1,7 +1,7 @@
<?php
namespace App\Entity;
namespace App\Languages\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -1,7 +1,7 @@
<?php
namespace App\Entity;
namespace App\Languages\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -1,7 +1,7 @@
<?php
namespace App\Entity;
namespace App\Languages\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -6,7 +6,7 @@ namespace App\Languages\LegacyHandler;
use ApiPlatform\Core\Exception\ItemNotFoundException;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Entity\AppListStrings;
use App\Languages\Entity\AppListStrings;
class AppListStringsHandler extends LegacyHandler implements AppListStringsProviderInterface
{

View file

@ -2,7 +2,7 @@
namespace App\Languages\LegacyHandler;
use App\Entity\AppListStrings;
use App\Languages\Entity\AppListStrings;
interface AppListStringsProviderInterface
{

View file

@ -4,7 +4,7 @@ namespace App\Languages\LegacyHandler;
use ApiPlatform\Core\Exception\ItemNotFoundException;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Entity\AppStrings;
use App\Languages\Entity\AppStrings;
class AppStringsHandler extends LegacyHandler
{

View file

@ -7,7 +7,7 @@ namespace App\Languages\LegacyHandler;
use ApiPlatform\Core\Exception\ItemNotFoundException;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;
use App\Entity\ModStrings;
use App\Languages\Entity\ModStrings;
use App\Service\ModuleNameMapperInterface;
use App\Service\ModuleRegistryInterface;
use Symfony\Component\HttpFoundation\Session\SessionInterface;

View file

@ -1,6 +1,6 @@
<?php
namespace App\Entity;
namespace App\Navbar\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -3,7 +3,7 @@
namespace App\Navbar\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;
use App\Entity\Navbar;
use App\Navbar\Entity\Navbar;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Service\ModuleNameMapperInterface;
use App\Service\ModuleRegistryInterface;

View file

@ -1,7 +1,7 @@
<?php
namespace App\Entity;
namespace App\Process\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -5,7 +5,7 @@ namespace App\Process\LegacyHandler;
use ApiPlatform\Core\Exception\InvalidArgumentException;
use App\Entity\Process;
use App\Process\Entity\Process;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Service\ProcessHandlerInterface;
use BadFunctionCallException;

View file

@ -2,7 +2,7 @@
namespace App\Repository;
use App\Entity\User;
use App\Module\users\Entity\User;
use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\NonUniqueResultException;
use Symfony\Bridge\Doctrine\Security\User\UserLoaderInterface;

View file

@ -3,7 +3,7 @@
namespace App\Resolver;
use ApiPlatform\Core\GraphQl\Resolver\QueryItemResolverInterface;
use App\Entity\BatchedStatistics;
use App\Statistics\Entity\BatchedStatistics;
use App\Service\StatisticsManagerInterface;
class BatchedStatisticsItemResolver implements QueryItemResolverInterface

View file

@ -3,7 +3,7 @@
namespace App\Resolver;
use ApiPlatform\Core\GraphQl\Resolver\QueryItemResolverInterface;
use App\Entity\Record;
use App\Data\Entity\Record;
use App\Service\RecordProviderInterface;
use Exception;

View file

@ -4,7 +4,7 @@ namespace App\Resolver;
use ApiPlatform\Core\GraphQl\Resolver\QueryItemResolverInterface;
use App\Data\LegacyHandler\RecordListHandler;
use App\Entity\RecordList;
use App\Data\Entity\RecordList;
class RecordListResolver implements QueryItemResolverInterface
{

View file

@ -3,7 +3,7 @@
namespace App\Resolver;
use ApiPlatform\Core\GraphQl\Resolver\QueryItemResolverInterface;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Service\StatisticsManagerInterface;
class StatisticsItemResolver implements QueryItemResolverInterface

View file

@ -2,7 +2,7 @@
namespace App\Security;
use App\Entity\User;
use App\Module\users\Entity\User;
use App\Security\Exception\UserDeletedException;
use Symfony\Component\Security\Core\User\UserCheckerInterface;
use Symfony\Component\Security\Core\User\UserInterface;

View file

@ -3,7 +3,7 @@
namespace App\Service\BulkActions;
use ApiPlatform\Core\Exception\InvalidArgumentException;
use App\Entity\Process;
use App\Process\Entity\Process;
use App\Data\LegacyHandler\FilterMapper\LegacyFilterMapper;
use App\Service\ModuleNameMapperInterface;
use App\Service\ProcessHandlerInterface;

View file

@ -3,7 +3,7 @@
namespace App\Service\BulkActions;
use ApiPlatform\Core\Exception\InvalidArgumentException;
use App\Entity\Process;
use App\Process\Entity\Process;
use App\Service\ModuleNameMapperInterface;
use App\Service\ProcessHandlerInterface;
use App\Service\RecordDeletionServiceInterface;

View file

@ -3,7 +3,7 @@
namespace App\Service\BulkActions;
use ApiPlatform\Core\Exception\InvalidArgumentException;
use App\Entity\Process;
use App\Process\Entity\Process;
use App\Service\ModuleNameMapperInterface;
use App\Service\ProcessHandlerInterface;
use Psr\Log\LoggerAwareInterface;

View file

@ -4,7 +4,7 @@
namespace App\Service;
use App\Entity\FieldDefinition;
use App\FieldDefinitions\Entity\FieldDefinition;
interface FieldDefinitionsProviderInterface
{

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\Navbar;
use App\Navbar\Entity\Navbar;
interface NavigationProviderInterface
{

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\Process;
use App\Process\Entity\Process;
interface ProcessHandlerInterface
{

View file

@ -3,7 +3,7 @@
namespace App\Service\RecordActions;
use ApiPlatform\Core\Exception\InvalidArgumentException;
use App\Entity\Process;
use App\Process\Entity\Process;
use App\Service\ModuleNameMapperInterface;
use App\Service\ProcessHandlerInterface;

View file

@ -3,7 +3,7 @@
namespace App\Service\RecordActions;
use ApiPlatform\Core\Exception\InvalidArgumentException;
use App\Entity\Process;
use App\Process\Entity\Process;
use App\Service\ModuleNameMapperInterface;
use App\Service\ProcessHandlerInterface;
use App\Service\RecordDeletionServiceInterface;

View file

@ -3,7 +3,7 @@
namespace App\Service\RecordActions;
use ApiPlatform\Core\Exception\InvalidArgumentException;
use App\Entity\Process;
use App\Process\Entity\Process;
use App\Service\ModuleNameMapperInterface;
use App\Service\ProcessHandlerInterface;

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\RecordList;
use App\Data\Entity\RecordList;
interface RecordListProviderInterface
{

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\Record;
use App\Data\Entity\Record;
use Exception;
interface RecordProviderInterface

View file

@ -2,8 +2,8 @@
namespace App\Service;
use App\Entity\BatchedStatistics;
use App\Entity\Statistic;
use App\Statistics\Entity\BatchedStatistics;
use App\Statistics\Entity\Statistic;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerInterface;
use Throwable;

View file

@ -2,8 +2,8 @@
namespace App\Service;
use App\Entity\BatchedStatistics;
use App\Entity\Statistic;
use App\Statistics\Entity\BatchedStatistics;
use App\Statistics\Entity\Statistic;
interface StatisticsManagerInterface
{

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
interface StatisticsProviderInterface
{

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\SystemConfig;
use App\SystemConfig\Entity\SystemConfig;
interface SystemConfigProviderInterface
{

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\ThemeImages;
use App\Themes\Entity\ThemeImages;
class ThemeImageService
{

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\UserPreference;
use App\UserPreferences\Entity\UserPreference;
interface UserPreferencesProviderInterface
{

View file

@ -2,7 +2,7 @@
namespace App\Service;
use App\Entity\ViewDefinition;
use App\ViewDefinitions\Entity\ViewDefinition;
use Exception;
interface ViewDefinitionsProviderInterface

View file

@ -1,7 +1,7 @@
<?php
namespace App\Entity;
namespace App\Statistics\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -1,7 +1,7 @@
<?php
namespace App\Entity;
namespace App\Statistics\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Legacy\Data\PreparedStatementHandler;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Legacy\Data\SecurityFiltersTrait;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Service\StatisticsProviderInterface;
use BeanFactory;

View file

@ -4,7 +4,7 @@ namespace App\Statistics\LegacyHandler;
use aCase;
use App\Data\LegacyHandler\AuditQueryingTrait;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;
use App\Service\ModuleNameMapperInterface;

View file

@ -4,7 +4,7 @@ namespace App\Statistics\LegacyHandler;
use aCase;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Service\StatisticsProviderInterface;
use BeanFactory;
use Psr\Log\LoggerAwareInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Engine\LegacyHandler\LegacyScopeState;
use App\Service\ModuleNameMapperInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use DateTimeService;
use Exception;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;
use App\Service\ModuleNameMapperInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Service\StatisticsProviderInterface;
class DefaultError implements StatisticsProviderInterface

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\AuditQueryingTrait;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\AuditQueryingTrait;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Legacy\Data\PreparedStatementHandler;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Legacy\Data\SecurityFiltersTrait;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler\Series;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\ListDataQueryHandler;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler\Series;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\ListDataQueryHandler;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler\Series;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\ListDataQueryHandler;
use App\Engine\LegacyHandler\LegacyHandler;
use App\Engine\LegacyHandler\LegacyScopeState;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler\Series;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Statistics\LegacyHandler\StatisticsHandlingTrait;
use App\Model\Statistics\ChartOptions;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Model\Statistics\ChartOptions;
use App\Model\Statistics\Series;
use App\Model\Statistics\SeriesItem;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;
use DateFormatService;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Service\StatisticsProviderInterface;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;
use Psr\Log\LoggerAwareInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -2,7 +2,7 @@
namespace App\Statistics\LegacyHandler;
use App\Entity\Statistic;
use App\Statistics\Entity\Statistic;
use App\Data\LegacyHandler\PresetDataHandlers\SubpanelDataQueryHandler;
use App\Service\StatisticsProviderInterface;

View file

@ -1,7 +1,7 @@
<?php
namespace App\Entity;
namespace App\SystemConfig\Entity;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;

View file

@ -2,7 +2,7 @@
namespace App\SystemConfig\LegacyHandler;
use App\Entity\SystemConfig;
use App\SystemConfig\Entity\SystemConfig;
use App\DateTime\LegacyHandler\DateTimeHandler;
class DateFormatConfigMapper implements SystemConfigMapperInterface

View file

@ -2,7 +2,7 @@
namespace App\SystemConfig\LegacyHandler;
use App\Entity\SystemConfig;
use App\SystemConfig\Entity\SystemConfig;
use App\Currency\LegacyHandler\CurrencyHandler;
class DefaultCurrencyConfigMapper implements SystemConfigMapperInterface

View file

@ -2,7 +2,7 @@
namespace App\SystemConfig\LegacyHandler;
use App\Entity\SystemConfig;
use App\SystemConfig\Entity\SystemConfig;
use App\Service\ModuleNameMapperInterface;
class DefaultModuleConfigMapper implements SystemConfigMapperInterface

Some files were not shown because too many files have changed in this diff Show more