Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Service
/
Command
/
Factory
:
FactoryInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Guzzle\Service\Command\Factory; use Guzzle\Service\Command\CommandInterface; /** * Interface for creating commands by name */ interface FactoryInterface { /** * Create a command by name * * @param string $name Command to create * @param array $args Command arguments * * @return CommandInterface|null */ public function factory($name, array $args = array()); }