Skip to content

Instantly share code, notes, and snippets.

@notomato
Created August 17, 2012 09:25
Show Gist options
  • Save notomato/3377378 to your computer and use it in GitHub Desktop.
Save notomato/3377378 to your computer and use it in GitHub Desktop.
Service with custom request class
<?php
$service = new Service(array(
'scheme' => 'https',
'host' => 'web.service.com',
'username' => 'user',
'password' => 's3kr1t',
'classes' => array(
'request' => 'my\custom\Request'
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment