From 89df4cac26c94b4c2fe7031f220a3e9f4872e9ac Mon Sep 17 00:00:00 2001 From: Freek Van der Herten Date: Tue, 16 Aug 2016 07:15:12 -0400 Subject: [PATCH] Applied fixes from StyleCI --- src/LobAddress.php | 4 +--- src/LobPostcard.php | 4 ++-- tests/ChannelTest.php | 5 ++--- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/LobAddress.php b/src/LobAddress.php index da4ce26..fb814ed 100644 --- a/src/LobAddress.php +++ b/src/LobAddress.php @@ -13,7 +13,7 @@ class LobAddress /** @var string */ protected $country; - /** @var string */ + /** @var string */ protected $city; /** @var string */ @@ -25,13 +25,11 @@ class LobAddress /** @var string */ protected $name = 'name'; - /** * @param string $line1 * @param string $country * * @return static - * */ public static function create($line1, $country = 'US') { diff --git a/src/LobPostcard.php b/src/LobPostcard.php index 093285a..8a23d72 100644 --- a/src/LobPostcard.php +++ b/src/LobPostcard.php @@ -19,7 +19,7 @@ class LobPostcard /** @var string */ protected $message; - /** @var string */ + /** @var string */ protected $size = '4x6'; /** @@ -35,7 +35,7 @@ public static function create($message = '') /** * @param string $message */ - public function __construct($message = '') + public function __construct($message = '') { $this->message = $message; } diff --git a/tests/ChannelTest.php b/tests/ChannelTest.php index ed2118a..34e25b4 100644 --- a/tests/ChannelTest.php +++ b/tests/ChannelTest.php @@ -13,10 +13,10 @@ class ChannelTest extends PHPUnit_Framework_TestCase { - /** @var \Lob\Lob|Mockery\Mock */ + /** @var \Lob\Lob|Mockery\Mock */ protected $lobClient; - /** @var \NotificationChannels\Lob\LobChannel */ + /** @var \NotificationChannels\Lob\LobChannel */ protected $channel; /** @var \NotificationChannels\Lob\Test\TestNotification */ @@ -25,7 +25,6 @@ class ChannelTest extends PHPUnit_Framework_TestCase /** @var mixed */ protected $notifiable; - public function setUp() { parent::setUp();