forked from illuminate/remote
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConnectionInterface.php
52 lines (44 loc) · 1014 Bytes
/
ConnectionInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php namespace Illuminate\Remote;
use Closure;
interface ConnectionInterface {
/**
* Define a set of commands as a task.
*
* @param string $task
* @param string|array $commands
* @return void
*/
public function define($task, $commands);
/**
* Run a task against the connection.
*
* @param string $task
* @param \Closure $callback
* @return void
*/
public function task($task, Closure $callback = null);
/**
* Run a set of commands against the connection.
*
* @param string|array $commands
* @param \Closure $callback
* @return void
*/
public function run($commands, Closure $callback = null);
/**
* Upload a local file to the server.
*
* @param string $local
* @param string $remote
* @return void
*/
public function put($local, $remote);
/**
* Upload a string to to the given file on the server.
*
* @param string $remote
* @param string $contents
* @return void
*/
public function putString($remote, $contents);
}