Completed
Push — master ( 0e1d82...1aeb3c )
by rugk
02:34
created
scripts/buildPhar.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,14 +7,14 @@
 block discarded – undo
7 7
 
8 8
 // preparation
9 9
 if (!is_dir($dir)) {
10
-    mkdir($dir);
10
+	mkdir($dir);
11 11
 }
12 12
 if (file_exists($file)) {
13
-    unlink($file);
13
+	unlink($file);
14 14
 }
15 15
 
16 16
 $phar = new Phar(
17
-    $file,
17
+	$file,
18 18
 	FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::KEY_AS_FILENAME,
19 19
 	'threema_msgapi.phar'
20 20
 );
Please login to merge, or discard this patch.
source/Threema/MsgApi/Tools/CryptTool.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -529,8 +529,8 @@
 block discarded – undo
529 529
 			$ret = 0;
530 530
 			$length = strlen($str1);
531 531
 			for ($i = 0; $i < $length; ++$i) {
532
-	            $ret |= ord($str1[$i]) ^ ord($str2[$i]);
533
-	        }
532
+				$ret |= ord($str1[$i]) ^ ord($str2[$i]);
533
+			}
534 534
 			return 0 === $ret;
535 535
 		}
536 536
 	}
Please login to merge, or discard this patch.