Skip to content

Commit

Permalink
Unalign all phpdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesvdvreken committed Jul 17, 2015
1 parent b4b88f8 commit b9aedfd
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 22 deletions.
1 change: 1 addition & 0 deletions .php_cs
Expand Up @@ -17,6 +17,7 @@ return Config::create()
'ordered_use',
'php4_constructor',
'phpdoc_order',
'-phpdoc_params',
'short_array_syntax',
'short_echo_tag',
'strict',
Expand Down
8 changes: 4 additions & 4 deletions src/Dummy.php
Expand Up @@ -15,18 +15,18 @@ public function message($to, $message, $from = null)
/**
* @param string $to
* @param string $message
* @param array $mediaUrls
* @param array $mediaUrls
* @param string $from
*/
public function messageWithMedia($to, $message, array $mediaUrls = null, $from = null)
{
}

/**
* @param string $to
* @param string $to
* @param string|callable $message
* @param array $options
* @param string $from
* @param array $options
* @param string $from
*/
public function call($to, $message, array $options = [], $from = null)
{
Expand Down
8 changes: 4 additions & 4 deletions src/LoggingDecorator.php
Expand Up @@ -42,7 +42,7 @@ public function message($to, $message, $from = null)
/**
* @param string $to
* @param string $message
* @param array $mediaUrls
* @param array $mediaUrls
* @param string $from
*
* @return \Services_Twilio_Rest_Message
Expand All @@ -55,10 +55,10 @@ public function messageWithMedia($to, $message, array $mediaUrls = null, $from =
}

/**
* @param string $to
* @param string $to
* @param string|callable $message
* @param array $options
* @param string $from
* @param array $options
* @param string $from
*
* @return \Services_Twilio_Rest_Call
*/
Expand Down
10 changes: 5 additions & 5 deletions src/Manager.php
Expand Up @@ -17,7 +17,7 @@ class Manager implements TwilioInterface

/**
* @param string $default
* @param array $settings
* @param array $settings
*/
public function __construct($default, array $settings)
{
Expand Down Expand Up @@ -61,7 +61,7 @@ public function message($to, $message, $from = null)
/**
* @param string $to
* @param string $message
* @param array $mediaUrls
* @param array $mediaUrls
* @param string $from
*
* @return \Services_Twilio_Rest_Message
Expand All @@ -72,10 +72,10 @@ public function messageWithMedia($to, $message, array $mediaUrls = null, $from =
}

/**
* @param string $to
* @param string $to
* @param string|callable $message
* @param array $options
* @param string $from
* @param array $options
* @param string $from
*
* @return \Services_Twilio_Rest_Call
*/
Expand Down
10 changes: 5 additions & 5 deletions src/Twilio.php
Expand Up @@ -32,7 +32,7 @@ class Twilio implements TwilioInterface
* @param string $token
* @param string $from
* @param string $sid
* @param bool $sslVerify
* @param bool $sslVerify
*/
public function __construct($sid, $token, $from, $sslVerify = true)
{
Expand All @@ -59,7 +59,7 @@ public function message($to, $message, $from = null)
/**
* @param string $to
* @param string $message
* @param array $mediaUrls
* @param array $mediaUrls
* @param string $from
*
* @return \Services_Twilio_Rest_Message
Expand All @@ -72,10 +72,10 @@ public function messageWithMedia($to, $message, array $mediaUrls = null, $from =
}

/**
* @param string $to
* @param string $to
* @param string|callable $message
* @param array $options
* @param string $from
* @param array $options
* @param string $from
*
* @return \Services_Twilio_Rest_Call
*/
Expand Down
8 changes: 4 additions & 4 deletions src/TwilioInterface.php
Expand Up @@ -15,18 +15,18 @@ public function message($to, $message, $from = null);
/**
* @param string $to
* @param string $message
* @param array $mediaUrls
* @param array $mediaUrls
* @param string $from
*
* @return \Services_Twilio_Rest_Message
*/
public function messageWithMedia($to, $message, array $mediaUrls = null, $from = null);

/**
* @param string $to
* @param string $to
* @param string|callable $message
* @param array $options
* @param string $from
* @param array $options
* @param string $from
*
* @return \Services_Twilio_Rest_Call
*/
Expand Down

0 comments on commit b9aedfd

Please sign in to comment.