Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
luciferous committed Mar 14, 2011
1 parent 32bbe78 commit c3862e6
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 42 deletions.
8 changes: 4 additions & 4 deletions Services/Twilio/ArrayDataProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman@twilio.com>
* @author Neuman Vong <neuman@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
* @link http://pear.php.net/package/Services_Twilio
*/
class Services_Twilio_ArrayDataProxy
implements Services_Twilio_DataProxy
Expand All @@ -27,7 +27,7 @@ public function __construct($array)
/**
* Implementation of retrieveData.
*
* @param string $key The index
* @param string $key The index
* @param array $params Optional parameters
*
* @return object Object representation
Expand All @@ -40,7 +40,7 @@ function retrieveData($key, array $params = array())
/**
* Implementation of createData.
*
* @param string $key The index
* @param string $key The index
* @param array $params Optional parameters
*
* @return object Object representation
Expand Down
14 changes: 7 additions & 7 deletions Services/Twilio/CachingDataProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman@twilio.com>
* @author Neuman Vong <neuman@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
* @link http://pear.php.net/package/Services_Twilio
*/
class Services_Twilio_CachingDataProxy
implements Services_Twilio_DataProxy
Expand Down Expand Up @@ -36,9 +36,9 @@ class Services_Twilio_CachingDataProxy
/**
* Constructor.
*
* @param array $principal Usually the SID
* @param Services_Twilio_DataProxy $proxy The proxy
* @param object|null $cache The cache
* @param array $principal Usually the SID
* @param Services_Twilio_DataProxy $proxy The proxy
* @param object|null $cache The cache
*/
public function __construct($principal, Services_Twilio_DataProxy $proxy,
$cache = null
Expand Down Expand Up @@ -86,7 +86,7 @@ public function __get($prop)
/**
* Implementation of retrieveData.
*
* @param string $path The path
* @param string $path The path
* @param array $params Optional parameters
*
* @return object Object representation
Expand All @@ -102,7 +102,7 @@ public function retrieveData($path, array $params = array())
/**
* Implementation of createData.
*
* @param string $path The path
* @param string $path The path
* @param array $params Optional parameters
*
* @return object Object representation
Expand Down
8 changes: 4 additions & 4 deletions Services/Twilio/DataProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman@twilio.com>
* @author Neuman Vong <neuman@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
* @link http://pear.php.net/package/Services_Twilio
*/
interface Services_Twilio_DataProxy
{
/**
* Retrieve the object specified by key.
*
* @param string $key The index
* @param string $key The index
* @param array $params Optional parameters
*
* @return object The object
Expand All @@ -24,7 +24,7 @@ function retrieveData($key, array $params = array());
/**
* Create the object specified by key.
*
* @param string $key The index
* @param string $key The index
* @param array $params Optional parameters
*
* @return object The object
Expand Down
4 changes: 2 additions & 2 deletions Services/Twilio/Http.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ class Services_Twilio_HttpException extends Exception {}
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman@twilio.com>
* @author Neuman Vong <neuman@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
* @link http://pear.php.net/package/Services_Twilio
*/
class Services_Twilio_Http
{
Expand Down
6 changes: 3 additions & 3 deletions Services/Twilio/InstanceResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman@twilio.com>
* @author Neuman Vong <neuman@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
* @link http://pear.php.net/package/Services_Twilio
*/
abstract class Services_Twilio_InstanceResource
extends Services_Twilio_Resource
{
/**
* @param mixed $params An array of updates, or a property name
* @param mixed $value A value with which to update the resource
* @param mixed $value A value with which to update the resource
*
* @return null
*/
Expand Down
8 changes: 4 additions & 4 deletions Services/Twilio/ListResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman@twilio.com>
* @author Neuman Vong <neuman@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
* @link http://pear.php.net/package/Services_Twilio
*/
abstract class Services_Twilio_ListResource
extends Services_Twilio_Resource
Expand Down Expand Up @@ -76,8 +76,8 @@ public function createData($sid, array $params = array())
/**
* Returns a page of InstanceResources from this list.
*
* @param int $page The start page
* @param int $size Number of items per page
* @param int $page The start page
* @param int $size Number of items per page
* @param array $size Optional filters
*
* @return Services_Twilio_Page A page
Expand Down
4 changes: 2 additions & 2 deletions Services/Twilio/PartialApplicationHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman@twilio.com>
* @author Neuman Vong <neuman@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
* @link http://pear.php.net/package/Services_Twilio
*/
class Services_Twilio_PartialApplicationHelper {
private $callbacks;
Expand Down
4 changes: 2 additions & 2 deletions Services/Twilio/Resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman@twilio.com>
* @author Neuman Vong <neuman@twilio.com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link http://pear.php.net/package/Services_Twilio
* @link http://pear.php.net/package/Services_Twilio
*/
abstract class Services_Twilio_Resource
implements Services_Twilio_DataProxy
Expand Down
28 changes: 14 additions & 14 deletions Services/Twilio/Twiml.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ class Services_Twilio_TwimlException extends Exception {}
*
* @category Services
* @package Services_Twilio
* @author Neuman Vong <neuman at ashmoremusic dot com>
* @author Neuman Vong <neuman at ashmoremusic dot com>
* @license http://creativecommons.org/licenses/MIT/ MIT
* @link https://gist.github.com/855985
* @link https://gist.github.com/855985
*/
class Services_Twilio_Twiml
{
Expand All @@ -23,9 +23,9 @@ class Services_Twilio_Twiml
* Constructs a Twiml response.
*
* @param SimpleXmlElement|array $arg:
* - the element to wrap
* - attributes to add to the element
* - if null, initialize an empty element named 'Response'
* - the element to wrap
* - attributes to add to the element
* - if null, initialize an empty element named 'Response'
*/
public function __construct($arg = null)
{
Expand All @@ -52,24 +52,24 @@ public function __construct($arg = null)
*
* A basic example:
*
* php> print $this->say('hello');
* <Say>hello</Say>
* php> print $this->say('hello');
* <Say>hello</Say>
*
* An example with attributes:
*
* php> print $this->say('hello', array('voice' => 'woman'));
* <Say voice="woman">hello</Say>
* php> print $this->say('hello', array('voice' => 'woman'));
* <Say voice="woman">hello</Say>
*
* You could even just pass in an attributes array, omitting the noun:
*
* php> print $this->gather(array('timeout' => '20'));
* <Gather timeout="20"/>
* php> print $this->gather(array('timeout' => '20'));
* <Gather timeout="20"/>
*
* @param string $verb The Twiml verb.
* @param array $args:
* - (noun string)
* - (noun string, attributes array)
* - (attributes array)
* - (noun string)
* - (noun string, attributes array)
* - (attributes array)
*
* @return SimpleXmlElement A SimpleXmlElement
*/
Expand Down

0 comments on commit c3862e6

Please sign in to comment.