From c3a44ae390ef6841ae00dc64eb02c0c920db6a5e Mon Sep 17 00:00:00 2001 From: Clement Desmidt Date: Fri, 17 Apr 2020 12:08:51 +0200 Subject: [PATCH] :green_heart: Fix with PHPCS --- app/code/backup/IsDistantTrait.php | 2 +- app/code/exceptions/BackupException.php | 2 +- app/code/exceptions/ComposerNotFoundException.php | 2 +- app/code/exceptions/DistantException.php | 4 ++-- app/code/exceptions/LocalException.php | 2 +- app/code/exceptions/ScenarioException.php | 2 +- app/code/exceptions/ScenarioNotFoundException.php | 2 +- app/code/exceptions/TransportException.php | 2 +- app/code/{Transport => transport}/Dropbox.php | 0 app/code/{Transport => transport}/Email.php | 0 app/code/{Transport => transport}/FTP.php | 0 app/code/{Transport => transport}/Factory.php | 0 app/code/{Transport => transport}/Folder.php | 0 app/code/{Transport => transport}/SFTP.php | 0 app/code/{Transport => transport}/TransportAbstract.php | 0 15 files changed, 9 insertions(+), 9 deletions(-) rename app/code/{Transport => transport}/Dropbox.php (100%) rename app/code/{Transport => transport}/Email.php (100%) rename app/code/{Transport => transport}/FTP.php (100%) rename app/code/{Transport => transport}/Factory.php (100%) rename app/code/{Transport => transport}/Folder.php (100%) rename app/code/{Transport => transport}/SFTP.php (100%) rename app/code/{Transport => transport}/TransportAbstract.php (100%) diff --git a/app/code/backup/IsDistantTrait.php b/app/code/backup/IsDistantTrait.php index 56e4fe4..b68ca31 100644 --- a/app/code/backup/IsDistantTrait.php +++ b/app/code/backup/IsDistantTrait.php @@ -15,4 +15,4 @@ trait IsDistantTrait } abstract public function retrieve(); -} \ No newline at end of file +} diff --git a/app/code/exceptions/BackupException.php b/app/code/exceptions/BackupException.php index de8a223..21af8d5 100644 --- a/app/code/exceptions/BackupException.php +++ b/app/code/exceptions/BackupException.php @@ -7,4 +7,4 @@ use Exception; class BackupException extends Exception { -} \ No newline at end of file +} diff --git a/app/code/exceptions/ComposerNotFoundException.php b/app/code/exceptions/ComposerNotFoundException.php index 7593938..9203f88 100644 --- a/app/code/exceptions/ComposerNotFoundException.php +++ b/app/code/exceptions/ComposerNotFoundException.php @@ -7,4 +7,4 @@ use Exception; class ComposerNotFoundException extends Exception { -} \ No newline at end of file +} diff --git a/app/code/exceptions/DistantException.php b/app/code/exceptions/DistantException.php index 1362649..9e975c5 100644 --- a/app/code/exceptions/DistantException.php +++ b/app/code/exceptions/DistantException.php @@ -4,7 +4,7 @@ namespace Shikiryu\Exceptions; use Exception; -class DistantException extends Exception +class DistantException extends Exception { -} \ No newline at end of file +} diff --git a/app/code/exceptions/LocalException.php b/app/code/exceptions/LocalException.php index e7ce9c1..af5ecfc 100644 --- a/app/code/exceptions/LocalException.php +++ b/app/code/exceptions/LocalException.php @@ -7,4 +7,4 @@ use Exception; class LocalException extends Exception { -} \ No newline at end of file +} diff --git a/app/code/exceptions/ScenarioException.php b/app/code/exceptions/ScenarioException.php index bfa77ff..513a1f9 100644 --- a/app/code/exceptions/ScenarioException.php +++ b/app/code/exceptions/ScenarioException.php @@ -7,4 +7,4 @@ use Exception; class ScenarioException extends Exception { -} \ No newline at end of file +} diff --git a/app/code/exceptions/ScenarioNotFoundException.php b/app/code/exceptions/ScenarioNotFoundException.php index 33482be..52c0195 100644 --- a/app/code/exceptions/ScenarioNotFoundException.php +++ b/app/code/exceptions/ScenarioNotFoundException.php @@ -7,4 +7,4 @@ use Exception; class ScenarioNotFoundException extends Exception { -} \ No newline at end of file +} diff --git a/app/code/exceptions/TransportException.php b/app/code/exceptions/TransportException.php index 4e5f504..dcf2503 100644 --- a/app/code/exceptions/TransportException.php +++ b/app/code/exceptions/TransportException.php @@ -7,4 +7,4 @@ use Exception; class TransportException extends Exception { -} \ No newline at end of file +} diff --git a/app/code/Transport/Dropbox.php b/app/code/transport/Dropbox.php similarity index 100% rename from app/code/Transport/Dropbox.php rename to app/code/transport/Dropbox.php diff --git a/app/code/Transport/Email.php b/app/code/transport/Email.php similarity index 100% rename from app/code/Transport/Email.php rename to app/code/transport/Email.php diff --git a/app/code/Transport/FTP.php b/app/code/transport/FTP.php similarity index 100% rename from app/code/Transport/FTP.php rename to app/code/transport/FTP.php diff --git a/app/code/Transport/Factory.php b/app/code/transport/Factory.php similarity index 100% rename from app/code/Transport/Factory.php rename to app/code/transport/Factory.php diff --git a/app/code/Transport/Folder.php b/app/code/transport/Folder.php similarity index 100% rename from app/code/Transport/Folder.php rename to app/code/transport/Folder.php diff --git a/app/code/Transport/SFTP.php b/app/code/transport/SFTP.php similarity index 100% rename from app/code/Transport/SFTP.php rename to app/code/transport/SFTP.php diff --git a/app/code/Transport/TransportAbstract.php b/app/code/transport/TransportAbstract.php similarity index 100% rename from app/code/Transport/TransportAbstract.php rename to app/code/transport/TransportAbstract.php