Skip to content

Commit

Permalink
Merge pull request #2 from laravel-notification-channels/analysis-z9xkkn
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
freekmurze authored Aug 16, 2016
2 parents dca8135 + 89df4ca commit 788b22d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 1 addition & 3 deletions src/LobAddress.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class LobAddress
/** @var string */
protected $country;

/** @var string */
/** @var string */
protected $city;

/** @var string */
Expand All @@ -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')
{
Expand Down
4 changes: 2 additions & 2 deletions src/LobPostcard.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class LobPostcard
/** @var string */
protected $message;

/** @var string */
/** @var string */
protected $size = '4x6';

/**
Expand All @@ -35,7 +35,7 @@ public static function create($message = '')
/**
* @param string $message
*/
public function __construct($message = '')
public function __construct($message = '')
{
$this->message = $message;
}
Expand Down
5 changes: 2 additions & 3 deletions tests/ChannelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -25,7 +25,6 @@ class ChannelTest extends PHPUnit_Framework_TestCase
/** @var mixed */
protected $notifiable;


public function setUp()
{
parent::setUp();
Expand Down

0 comments on commit 788b22d

Please sign in to comment.