Completed
Push — master ( 0e1d82...1aeb3c )
by rugk
02:34
created
scripts/buildPhar.php 2 patches
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.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 <?php
3 3
 // set variables
4 4
 $dir = dirname(__DIR__);
5
-$source = dirname(__DIR__) . '/source';
6
-$file = $dir . '/threema_msgapi.phar';
5
+$source = dirname(__DIR__).'/source';
6
+$file = $dir.'/threema_msgapi.phar';
7 7
 
8 8
 // preparation
9 9
 if (!is_dir($dir)) {
Please login to merge, or discard this patch.