Skip to content

Commit 788b22d

Browse files
authored
Merge pull request #2 from laravel-notification-channels/analysis-z9xkkn
Applied fixes from StyleCI
2 parents dca8135 + 89df4ca commit 788b22d

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

src/LobAddress.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class LobAddress
1313
/** @var string */
1414
protected $country;
1515

16-
/** @var string */
16+
/** @var string */
1717
protected $city;
1818

1919
/** @var string */
@@ -25,13 +25,11 @@ class LobAddress
2525
/** @var string */
2626
protected $name = 'name';
2727

28-
2928
/**
3029
* @param string $line1
3130
* @param string $country
3231
*
3332
* @return static
34-
*
3533
*/
3634
public static function create($line1, $country = 'US')
3735
{

src/LobPostcard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class LobPostcard
1919
/** @var string */
2020
protected $message;
2121

22-
/** @var string */
22+
/** @var string */
2323
protected $size = '4x6';
2424

2525
/**
@@ -35,7 +35,7 @@ public static function create($message = '')
3535
/**
3636
* @param string $message
3737
*/
38-
public function __construct($message = '')
38+
public function __construct($message = '')
3939
{
4040
$this->message = $message;
4141
}

tests/ChannelTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313

1414
class ChannelTest extends PHPUnit_Framework_TestCase
1515
{
16-
/** @var \Lob\Lob|Mockery\Mock */
16+
/** @var \Lob\Lob|Mockery\Mock */
1717
protected $lobClient;
1818

19-
/** @var \NotificationChannels\Lob\LobChannel */
19+
/** @var \NotificationChannels\Lob\LobChannel */
2020
protected $channel;
2121

2222
/** @var \NotificationChannels\Lob\Test\TestNotification */
@@ -25,7 +25,6 @@ class ChannelTest extends PHPUnit_Framework_TestCase
2525
/** @var mixed */
2626
protected $notifiable;
2727

28-
2928
public function setUp()
3029
{
3130
parent::setUp();

0 commit comments

Comments
 (0)