Failed Conditions
Pull Request — master (#682)
by
unknown
09:41
created
controller/internalcontroller.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@
 block discarded – undo
27 27
 	private $appManager;
28 28
 
29 29
 	public function __construct($AppName,
30
-	                            IRequest $request,
31
-	                            $UserId,
32
-	                            CredentialService $credentialService,
33
-	                            IConfig $config,
34
-	                            IManager $IManager,
35
-	                            IAppManager $appManager
30
+								IRequest $request,
31
+								$UserId,
32
+								CredentialService $credentialService,
33
+								IConfig $config,
34
+								IManager $IManager,
35
+								IAppManager $appManager
36 36
 	) {
37 37
 		parent::__construct(
38 38
 			$AppName,
Please login to merge, or discard this patch.
migration/serversideencryption.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 	private $fileService;
61 61
 
62 62
 	public function __construct(EncryptService $encryptService, IDBConnection $db, LoggerInterface $logger, CredentialService $credentialService, CredentialRevisionService $revisionService,
63
-	                            FileService $fileService, IConfig $config) {
63
+								FileService $fileService, IConfig $config) {
64 64
 		$this->encryptService = $encryptService;
65 65
 		$this->db = $db;
66 66
 		$this->logger = $logger;
Please login to merge, or discard this patch.
lib/Utility/Utils.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
 use OCP\IUserManager;
27 27
 
28 28
 class Utils {
29
-    /**
30
-     * Gets the unix epoch UTC timestamp
31
-     * @return int
32
-     */
29
+	/**
30
+	 * Gets the unix epoch UTC timestamp
31
+	 * @return int
32
+	 */
33 33
 	public static function getTime() {
34 34
 		return (new \DateTime())->getTimestamp();
35 35
 	}
@@ -40,10 +40,10 @@  discard block
 block discarded – undo
40 40
 		return microtime(true);
41 41
 	}
42 42
 
43
-    /**
44
-     * Generates a Globally Unique ID
45
-     * @return string
46
-     */
43
+	/**
44
+	 * Generates a Globally Unique ID
45
+	 * @return string
46
+	 */
47 47
 	public static function GUID() {
48 48
 		if (function_exists('com_create_guid') === true)
49 49
 		{
Please login to merge, or discard this patch.