diff options
Diffstat (limited to 'lib/private/TextToImage/Manager.php')
-rw-r--r-- | lib/private/TextToImage/Manager.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/private/TextToImage/Manager.php b/lib/private/TextToImage/Manager.php index f68f657277f..86212709c42 100644 --- a/lib/private/TextToImage/Manager.php +++ b/lib/private/TextToImage/Manager.php @@ -27,23 +27,23 @@ namespace OC\TextToImage; use OC\AppFramework\Bootstrap\Coordinator; use OC\TextToImage\Db\Task as DbTask; +use OC\TextToImage\Db\TaskMapper; +use OCP\AppFramework\Db\DoesNotExistException; +use OCP\AppFramework\Db\MultipleObjectsReturnedException; +use OCP\BackgroundJob\IJobList; +use OCP\DB\Exception; use OCP\Files\AppData\IAppDataFactory; use OCP\Files\IAppData; use OCP\Files\NotFoundException; use OCP\Files\NotPermittedException; use OCP\IConfig; +use OCP\IServerContainer; +use OCP\PreConditionNotMetException; use OCP\TextToImage\Exception\TaskFailureException; use OCP\TextToImage\Exception\TaskNotFoundException; use OCP\TextToImage\IManager; -use OCP\TextToImage\Task; -use OC\TextToImage\Db\TaskMapper; -use OCP\AppFramework\Db\DoesNotExistException; -use OCP\AppFramework\Db\MultipleObjectsReturnedException; -use OCP\BackgroundJob\IJobList; -use OCP\DB\Exception; -use OCP\IServerContainer; use OCP\TextToImage\IProvider; -use OCP\PreConditionNotMetException; +use OCP\TextToImage\Task; use Psr\Log\LoggerInterface; use RuntimeException; use Throwable; |