Completed
Push — master ( d342b9...3a6611 )
by Kamil
03:10
created
example/sftp_async_write.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 $ssh2->on('connect', function(SSH2Interface $ssh2) {
60 60
     echo "# CONNECTED\n";
61 61
     $ssh2->createDriver(SSH2::DRIVER_SFTP)
62
-         ->connect();
62
+            ->connect();
63 63
 });
64 64
 
65 65
 $ssh2->on('disconnect', function(SSH2Interface $ssh2) use($loop) {
Please login to merge, or discard this patch.
example/ssh_async_multi_command.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 $ssh2->on('connect', function(SSH2Interface $ssh2) {
68 68
     echo "# CONNECTED\n";
69 69
     $ssh2->createDriver(SSH2::DRIVER_SHELL)
70
-         ->connect();
70
+            ->connect();
71 71
 });
72 72
 
73 73
 $ssh2->on('disconnect', function(SSH2Interface $ssh2) use($loop) {
Please login to merge, or discard this patch.
example/ssh_async_single_command.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 $ssh2->on('connect', function(SSH2Interface $ssh2) {
68 68
     echo "# CONNECTED\n";
69 69
     $ssh2->createDriver(SSH2::DRIVER_SHELL)
70
-         ->connect();
70
+            ->connect();
71 71
 });
72 72
 
73 73
 $ssh2->on('disconnect', function(SSH2Interface $ssh2) use($loop) {
Please login to merge, or discard this patch.
example/sftp_async_read.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 $ssh2->on('connect', function(SSH2Interface $ssh2) {
60 60
     echo "# CONNECTED\n";
61 61
     $ssh2->createDriver(SSH2::DRIVER_SFTP)
62
-         ->connect();
62
+            ->connect();
63 63
 });
64 64
 
65 65
 $ssh2->on('disconnect', function(SSH2Interface $ssh2) use($loop) {
Please login to merge, or discard this patch.