Skip to content

Commit

Permalink
Add code style fixes by php-cs-fixer
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <jonas@freesources.org>
  • Loading branch information
mejo- committed May 5, 2023
1 parent 418c627 commit d673c77
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lib/Command/SendAllMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@

namespace OCA\MonthlyStatusEmail\Command;

use OCP\IUserManager;
use OC\Core\Command\Base;
use OCA\MonthlyStatusEmail\Service\MailSender;
use OCA\MonthlyStatusEmail\Service\NotificationTrackerService;
use OCP\IUserManager;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

Expand Down
2 changes: 1 addition & 1 deletion lib/Command/SendMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@

namespace OCA\MonthlyStatusEmail\Command;

use OCP\IUserManager;
use OC\Core\Command\Base;
use OCA\MonthlyStatusEmail\Service\MailSender;
use OCA\MonthlyStatusEmail\Service\NotificationTrackerService;
use OCP\IUserManager;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
Expand Down
2 changes: 1 addition & 1 deletion lib/Controller/OptoutController.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
use OCA\MonthlyStatusEmail\Service\MailSender;
use OCA\MonthlyStatusEmail\Service\NotFoundException;
use OCA\MonthlyStatusEmail\Service\NotificationTrackerService;
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\Http\NotFoundResponse;
use OCP\AppFramework\Http\Response;
use OCP\AppFramework\Http\Template\PublicTemplateResponse;
use OCP\IRequest;
use OCP\AppFramework\Controller;
use OCP\IUserSession;

/**
Expand Down
2 changes: 1 addition & 1 deletion lib/Jobs/InitDatabaseJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
namespace OCA\MonthlyStatusEmail\Jobs;

use OCA\MonthlyStatusEmail\Service\NotificationTrackerService;
use OCP\BackgroundJob\QueuedJob;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\QueuedJob;
use OCP\IUser;
use OCP\IUserManager;

Expand Down
2 changes: 1 addition & 1 deletion lib/Listener/FirstLoginListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
use OCA\MonthlyStatusEmail\Service\MessageProvider;
use OCA\MonthlyStatusEmail\Service\NotFoundException;
use OCA\MonthlyStatusEmail\Service\NotificationTrackerService;
use OCP\IConfig;
use OCP\IServerContainer;
use OCP\IUser;
use OCP\IConfig;
use OCP\Mail\IMailer;

// TODO port to IListener
Expand Down
2 changes: 1 addition & 1 deletion lib/Migration/Version23000Date2021090112000001.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@

use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\SimpleMigrationStep;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;

class Version23000Date2021090112000001 extends SimpleMigrationStep {
/**
Expand Down
6 changes: 3 additions & 3 deletions lib/Migration/Version23000Date2022022912000001.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@

use Closure;
use OCP\DB\ISchemaWrapper;
use OCP\Migration\SimpleMigrationStep;
use OCP\Migration\IOutput;
use OCP\IDBConnection;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;

class Version23000Date2022022912000001 extends SimpleMigrationStep {

Expand Down
2 changes: 1 addition & 1 deletion lib/Service/MailSender.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

namespace OCA\MonthlyStatusEmail\Service;

use OCP\Files\FileInfo;
use OCA\MonthlyStatusEmail\Db\NotificationTracker;
use OCP\DB\Exception;
use OCP\Files\FileInfo;
use OCP\IConfig;
use OCP\IL10N;
use OCP\IServerContainer;
Expand Down
2 changes: 1 addition & 1 deletion lib/Service/StorageInfoProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
namespace OCA\MonthlyStatusEmail\Service;

use OC\Files\Storage\Wrapper\Quota;
use OCP\IUser;
use OCP\Files\IRootFolder;
use OCP\IUser;

class StorageInfoProvider {
/**
Expand Down

0 comments on commit d673c77

Please sign in to comment.