diff --git a/src/Facades/Vimeo.php b/src/Facades/Vimeo.php index c2adeb8..c0d4c6d 100644 --- a/src/Facades/Vimeo.php +++ b/src/Facades/Vimeo.php @@ -20,11 +20,30 @@ namespace Vimeo\Laravel\Facades; use Illuminate\Support\Facades\Facade; +use \Vimeo\Vimeo as Connection; /** * This is the Vimeo facade class. * * @author Vincent Klaiber + * + * @method static Connection connection(string $name = null) + * @method static Connection reconnect(string $name = null) + * @method static void disconnect(string $name = null) + * @method static array getConnectionConfig(string $name = null) + * @method static string getDefaultConnection() + * @method static void setDefaultConnection(string $name) + * @method static void extend(string $name, callable $resolver) + * @method static array getConnections() + * + * @method static array request($url, array $params = [], string $method = 'GET', bool $json_body = true, array $headers = []) + * @method static void setCURLOptions(array $curl_opts = array()) + * @method static void setProxy(string $proxy_address, string $proxy_port = null, string $proxy_userpwd = null) + * @method static array accessToken(string $code, string $redirect_uri) + * @method static string upload(string $file_path, array $params = []) + * @method static string replace(string $video_uri, string $file_path, array $params = []) + * @method static string uploadImage(string $pictures_uri, string $file_path, bool $activate = false) + * @method static string uploadTexttrack(string $texttracks_uri, string $file_path, string $track_type, string $language) */ class Vimeo extends Facade {