Skip to content

Commit

Permalink
fix: 修复命名空间大小写问题
Browse files Browse the repository at this point in the history
  • Loading branch information
kanyxmo committed Jun 25, 2023
1 parent db6a335 commit f63b596
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion app/Setting/Service/ModuleService.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Generator\ModuleGenerator;
use Mine\Interfaces\serviceInterface\ModuleServiceInterface;
use Mine\Interfaces\ServiceInterface\ModuleServiceInterface;
use Mine\Mine;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Output\NullOutput;
Expand Down
2 changes: 1 addition & 1 deletion app/Setting/Service/SettingConfigService.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Annotation\Transaction;
use Mine\Interfaces\serviceInterface\ConfigServiceInterface;
use Mine\Interfaces\ServiceInterface\ConfigServiceInterface;
use Psr\Container\ContainerInterface;

#[DependProxy(values: [ ConfigServiceInterface::class ])]
Expand Down
2 changes: 1 addition & 1 deletion app/Setting/Service/SettingCrontabLogService.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use App\Setting\Mapper\SettingCrontabLogMapper;
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Interfaces\serviceInterface\CrontabLogServiceInterface;
use Mine\Interfaces\ServiceInterface\CrontabLogServiceInterface;

#[DependProxy(values: [CrontabLogServiceInterface::class])]
class SettingCrontabLogService extends AbstractService implements CrontabLogServiceInterface
Expand Down
2 changes: 1 addition & 1 deletion app/Setting/Service/SettingGenerateColumnsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use App\Setting\Model\SettingGenerateColumns;
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Interfaces\serviceInterface\GenerateColumnServiceInterface;
use Mine\Interfaces\ServiceInterface\GenerateColumnServiceInterface;
use function PHPStan\dumpType;

/**
Expand Down
2 changes: 1 addition & 1 deletion app/System/Service/SystemDictDataService.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Hyperf\Redis\Redis;
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Interfaces\serviceInterface\DictDataServiceInterface;
use Mine\Interfaces\ServiceInterface\DictDataServiceInterface;
use Psr\Container\ContainerInterface;

/**
Expand Down
2 changes: 1 addition & 1 deletion app/System/Service/SystemMenuService.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use App\System\Model\SystemMenu;
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Interfaces\serviceInterface\MenuServiceInterface;
use Mine\Interfaces\ServiceInterface\MenuServiceInterface;

#[DependProxy(values: [ MenuServiceInterface::class ])]
class SystemMenuService extends AbstractService implements MenuServiceInterface
Expand Down
2 changes: 1 addition & 1 deletion app/System/Service/SystemOperLogService.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use App\System\Mapper\SystemOperLogMapper;
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Interfaces\serviceInterface\OperLogServiceInterface;
use Mine\Interfaces\ServiceInterface\OperLogServiceInterface;

#[DependProxy(values: [ OperLogServiceInterface::class ])]
class SystemOperLogService extends AbstractService implements OperLogServiceInterface
Expand Down
2 changes: 1 addition & 1 deletion app/System/Service/SystemQueueLogService.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use Mine\Amqp\DelayProducer;
use Mine\Annotation\DependProxy;
use Mine\Exception\NormalStatusException;
use Mine\Interfaces\serviceInterface\QueueLogServiceInterface;
use Mine\Interfaces\ServiceInterface\QueueLogServiceInterface;

/**
* 队列管理服务类
Expand Down
2 changes: 1 addition & 1 deletion app/System/Service/SystemQueueMessageService.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use App\System\Vo\QueueMessageVo;
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Interfaces\serviceInterface\QueueMessageServiceInterface;
use Mine\Interfaces\ServiceInterface\QueueMessageServiceInterface;

/**
* 信息管理服务类
Expand Down
2 changes: 1 addition & 1 deletion app/System/Service/SystemRoleService.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Mine\Abstracts\AbstractService;
use Mine\Annotation\DependProxy;
use Mine\Exception\NormalStatusException;
use Mine\Interfaces\serviceInterface\RoleServiceInterface;
use Mine\Interfaces\ServiceInterface\RoleServiceInterface;

#[DependProxy(values: [ RoleServiceInterface::class ])]
class SystemRoleService extends AbstractService implements RoleServiceInterface
Expand Down
2 changes: 1 addition & 1 deletion app/System/Service/SystemUserService.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use Mine\Event\UserDelete;
use Mine\Exception\MineException;
use Mine\Exception\NormalStatusException;
use Mine\Interfaces\serviceInterface\UserServiceInterface;
use Mine\Interfaces\ServiceInterface\UserServiceInterface;
use Mine\MineRequest;
use Psr\Container\ContainerExceptionInterface;
use Psr\Container\NotFoundExceptionInterface;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.org"
"url": "https://mirrors.tencent.com/composer/"
}
}
}
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f63b596

Please sign in to comment.