Skip to content

Commit b9aedfd

Browse files
Unalign all phpdocs
1 parent b4b88f8 commit b9aedfd

File tree

6 files changed

+23
-22
lines changed

6 files changed

+23
-22
lines changed

.php_cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ return Config::create()
1717
'ordered_use',
1818
'php4_constructor',
1919
'phpdoc_order',
20+
'-phpdoc_params',
2021
'short_array_syntax',
2122
'short_echo_tag',
2223
'strict',

src/Dummy.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ public function message($to, $message, $from = null)
1515
/**
1616
* @param string $to
1717
* @param string $message
18-
* @param array $mediaUrls
18+
* @param array $mediaUrls
1919
* @param string $from
2020
*/
2121
public function messageWithMedia($to, $message, array $mediaUrls = null, $from = null)
2222
{
2323
}
2424

2525
/**
26-
* @param string $to
26+
* @param string $to
2727
* @param string|callable $message
28-
* @param array $options
29-
* @param string $from
28+
* @param array $options
29+
* @param string $from
3030
*/
3131
public function call($to, $message, array $options = [], $from = null)
3232
{

src/LoggingDecorator.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function message($to, $message, $from = null)
4242
/**
4343
* @param string $to
4444
* @param string $message
45-
* @param array $mediaUrls
45+
* @param array $mediaUrls
4646
* @param string $from
4747
*
4848
* @return \Services_Twilio_Rest_Message
@@ -55,10 +55,10 @@ public function messageWithMedia($to, $message, array $mediaUrls = null, $from =
5555
}
5656

5757
/**
58-
* @param string $to
58+
* @param string $to
5959
* @param string|callable $message
60-
* @param array $options
61-
* @param string $from
60+
* @param array $options
61+
* @param string $from
6262
*
6363
* @return \Services_Twilio_Rest_Call
6464
*/

src/Manager.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Manager implements TwilioInterface
1717

1818
/**
1919
* @param string $default
20-
* @param array $settings
20+
* @param array $settings
2121
*/
2222
public function __construct($default, array $settings)
2323
{
@@ -61,7 +61,7 @@ public function message($to, $message, $from = null)
6161
/**
6262
* @param string $to
6363
* @param string $message
64-
* @param array $mediaUrls
64+
* @param array $mediaUrls
6565
* @param string $from
6666
*
6767
* @return \Services_Twilio_Rest_Message
@@ -72,10 +72,10 @@ public function messageWithMedia($to, $message, array $mediaUrls = null, $from =
7272
}
7373

7474
/**
75-
* @param string $to
75+
* @param string $to
7676
* @param string|callable $message
77-
* @param array $options
78-
* @param string $from
77+
* @param array $options
78+
* @param string $from
7979
*
8080
* @return \Services_Twilio_Rest_Call
8181
*/

src/Twilio.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Twilio implements TwilioInterface
3232
* @param string $token
3333
* @param string $from
3434
* @param string $sid
35-
* @param bool $sslVerify
35+
* @param bool $sslVerify
3636
*/
3737
public function __construct($sid, $token, $from, $sslVerify = true)
3838
{
@@ -59,7 +59,7 @@ public function message($to, $message, $from = null)
5959
/**
6060
* @param string $to
6161
* @param string $message
62-
* @param array $mediaUrls
62+
* @param array $mediaUrls
6363
* @param string $from
6464
*
6565
* @return \Services_Twilio_Rest_Message
@@ -72,10 +72,10 @@ public function messageWithMedia($to, $message, array $mediaUrls = null, $from =
7272
}
7373

7474
/**
75-
* @param string $to
75+
* @param string $to
7676
* @param string|callable $message
77-
* @param array $options
78-
* @param string $from
77+
* @param array $options
78+
* @param string $from
7979
*
8080
* @return \Services_Twilio_Rest_Call
8181
*/

src/TwilioInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ public function message($to, $message, $from = null);
1515
/**
1616
* @param string $to
1717
* @param string $message
18-
* @param array $mediaUrls
18+
* @param array $mediaUrls
1919
* @param string $from
2020
*
2121
* @return \Services_Twilio_Rest_Message
2222
*/
2323
public function messageWithMedia($to, $message, array $mediaUrls = null, $from = null);
2424

2525
/**
26-
* @param string $to
26+
* @param string $to
2727
* @param string|callable $message
28-
* @param array $options
29-
* @param string $from
28+
* @param array $options
29+
* @param string $from
3030
*
3131
* @return \Services_Twilio_Rest_Call
3232
*/

0 commit comments

Comments
 (0)