Completed
Push — master ( f0bd91...8bcd04 )
by Anton
02:41
created
src/Rsync.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -596,7 +596,7 @@  discard block
 block discarded – undo
596 596
         $this->config = array_merge($this->config, $config ?: []);
597 597
 
598 598
         $this->setOptions($this->config[self::CONF_OPTIONS])
599
-             ->setSSH($this->config[self::CONF_SSH]);
599
+                ->setSSH($this->config[self::CONF_SSH]);
600 600
 
601 601
         parent::__construct($this->config[self::CONF_EXECUTABLE], $this->config[self::CONF_CWD], '=');
602 602
     }
@@ -646,7 +646,7 @@  discard block
 block discarded – undo
646 646
 
647 647
         $this->setParameters([$from, $to]);
648 648
         $this->execute()
649
-             ->clearParameters();
649
+                ->clearParameters();
650 650
 
651 651
         return $this;
652 652
     }
Please login to merge, or discard this patch.
src/Command.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,8 @@
 block discarded – undo
63 63
      */
64 64
     public function __construct(string $executable, string $cwd = './', string $optionValueAssigner = ' ') {
65 65
         $this->setExecutable($executable)
66
-             ->setCWD($cwd)
67
-             ->setOptionValueAssigner($optionValueAssigner);
66
+                ->setCWD($cwd)
67
+                ->setOptionValueAssigner($optionValueAssigner);
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.
examples/usage.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 use xobotyi\rsync;
11 11
 
12 12
 $ssh = new rsync\SSH([
13
-                         rsync\SSH::CONF_EXECUTABLE => 'C:\rsync\ssh.exe',
14
-                         rsync\SSH::CONF_OPTIONS    => [
15
-                             rsync\SSH::OPT_IDENTIFICATION_FILE => __DIR__ . '/../tests/ident.txt',
16
-                             rsync\SSH::OPT_OPTION              => ['BatchMode=yes', 'StrictHostKeyChecking=no'],
17
-                         ],
18
-                     ]);
19 13
\ No newline at end of file
14
+                            rsync\SSH::CONF_EXECUTABLE => 'C:\rsync\ssh.exe',
15
+                            rsync\SSH::CONF_OPTIONS    => [
16
+                                rsync\SSH::OPT_IDENTIFICATION_FILE => __DIR__ . '/../tests/ident.txt',
17
+                                rsync\SSH::OPT_OPTION              => ['BatchMode=yes', 'StrictHostKeyChecking=no'],
18
+                            ],
19
+                        ]);
20 20
\ No newline at end of file
Please login to merge, or discard this patch.