home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Remote
➕ New
📤 Upload
✎ Editing:
MultiConnection.php
← Back
<?php namespace Illuminate\Remote; use Closure; class MultiConnection implements ConnectionInterface { /** * All of the active server connections. * * @var array */ protected $connections; /** * The array of connections. * * @param array $connections * @return void */ public function __construct(array $connections) { $this->connections = $connections; } /** * Define a set of commands as a task. * * @param string $task * @param string|array $commands * @return void */ public function define($task, $commands) { foreach ($this->connections as $connection) { $connection->define($task, $commands); } } /** * Run a task against the connection. * * @param string $task * @param \Closure $callback * @return void */ public function task($task, Closure $callback = null) { foreach ($this->connections as $connection) { $connection->task($task, $callback); } } /** * Run a set of commands against the connection. * * @param string|array $commands * @param \Closure $callback * @return void */ public function run($commands, Closure $callback = null) { foreach ($this->connections as $connection) { $connection->run($commands, $callback); } } /** * Upload a local file to the server. * * @param string $local * @param string $remote * @return void */ public function put($local, $remote) { foreach ($this->connections as $connection) { $connection->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) { foreach ($this->connections as $connection) { $connection->putString($remote, $contents); } } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel