Passed
Push — master ( d1efa6...8e9553 )
by
unknown
16:00
created
plugins/kendox/php/kendox-client/class.kendox-token-generator.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@
 block discarded – undo
42 42
 	 * Issuer host name.
43 43
 	 */
44 44
 		private $Issuer, /**
45
-	 * Full filename of PFX-File (Certificate).
46
-	 */
45
+		 * Full filename of PFX-File (Certificate).
46
+		 */
47 47
 		private $PfxFile, /**
48
-	 * Password for PFX-File (Certificate).
49
-	 */
48
+		 * Password for PFX-File (Certificate).
49
+		 */
50 50
 		private $PfxPassword
51 51
 	) {
52 52
 		$this->loadCertificateFromPfx();
Please login to merge, or discard this patch.
plugins/filesbackendDefault/php/lib/ocsapi/class.ocsclient.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -84,14 +84,14 @@
 block discarded – undo
84 84
 	 * @var string Server base URL
85 85
 	 */
86 86
 		private $baseurl, /**
87
-	 * @var string Username
88
-	 */
87
+		 * @var string Username
88
+		 */
89 89
 		private $user, /**
90
-	 * @var string Password
91
-	 */
90
+		 * @var string Password
91
+		 */
92 92
 		private $pass, /**
93
-	 * @var bool Allow self signed certs
94
-	 */
93
+		 * @var bool Allow self signed certs
94
+		 */
95 95
 		private $allowSelfSignedCerts = false
96 96
 	) {
97 97
 		// check if curl is available
Please login to merge, or discard this patch.
plugins/filesbackendSeafile/php/lib/seafapi/SeafileApi.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -96,11 +96,11 @@
 block discarded – undo
96 96
 	 * @var string Server base URL
97 97
 	 */
98 98
 		private readonly string $baseurl, /**
99
-	 * @var string Username
100
-	 */
99
+		 * @var string Username
100
+		 */
101 101
 		private string $user, /**
102
-	 * @var string Password
103
-	 */
102
+		 * @var string Password
103
+		 */
104 104
 		private readonly string $pass,
105 105
 		?string $otp = null
106 106
 	) {
Please login to merge, or discard this patch.
plugins/files/php/class.filesbrowsermodule.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1052,8 +1052,8 @@
 block discarded – undo
1052 1052
 			$messageProps = mapi_getprops($message, [PR_SUBJECT, PR_MESSAGE_CLASS]);
1053 1053
 			$cls = $messageProps[PR_MESSAGE_CLASS];
1054 1054
 			$isSupportedMessage = class_match_prefix($cls, "IPM.Note") ||
1055
-			                      class_match_prefix($cls, "Report.IPM.Note") ||
1056
-			                      class_match_prefix($cls, "IPM.Schedule");
1055
+								  class_match_prefix($cls, "Report.IPM.Note") ||
1056
+								  class_match_prefix($cls, "IPM.Schedule");
1057 1057
 
1058 1058
 			if ($isSupportedMessage) {
1059 1059
 				// Get addressbook for current session
Please login to merge, or discard this patch.
plugins/smime/php/plugin.smime.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -775,7 +775,7 @@
 block discarded – undo
775 775
 			return;
776 776
 		}
777 777
 		if (!class_match_prefix($messageClass, "IPM.Note.deferSMIME") &&
778
-		    !class_match_prefix($messageClass, "IPM.Note.SMIME"))
778
+			!class_match_prefix($messageClass, "IPM.Note.SMIME"))
779 779
 			return;
780 780
 
781 781
 		// FIXME: for now return when we are going to sign but we don't have the passphrase set
Please login to merge, or discard this patch.
server/includes/util.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -588,7 +588,7 @@
 block discarded – undo
588 588
 			// deleting an attachment removes an actual attachment of the message
589 589
 			$mprops = mapi_getprops($message, [PR_MESSAGE_CLASS]);
590 590
 			if (isSmimePluginEnabled() &&
591
-			    class_match_prefix($mprops[PR_MESSAGE_CLASS], "IPM.Note.SMIME"))
591
+				class_match_prefix($mprops[PR_MESSAGE_CLASS], "IPM.Note.SMIME"))
592 592
 				mapi_message_deleteattach($message, $attnum);
593 593
 
594 594
 			$decapRcptTable = mapi_message_getrecipienttable($message);
Please login to merge, or discard this patch.