Skip to content

Commit

Permalink
CS.
Browse files Browse the repository at this point in the history
  • Loading branch information
overtrue committed Jul 4, 2017
1 parent be3194a commit 103c8df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/EasySms.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function send($to, $message, array $gateways = [])
/**
* Create a gateway.
*
* @param string $name
* @param string|null $name
*
* @return \Overtrue\EasySms\Contracts\GatewayInterface
*/
Expand All @@ -103,7 +103,9 @@ public function gateway($name = null)
*
* @param string|null $strategy
*
* @return StrategyInterface
* @return \Overtrue\EasySms\Contracts\StrategyInterface
*
* @throws \Overtrue\EasySms\Exceptions\InvalidArgumentException
*/
public function strategy($strategy = null)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/EasySmsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

namespace Overtrue\EasySms\Tests;

use Overtrue\EasySms\Exceptions\InvalidArgumentException;
use Overtrue\EasySms\Contracts\GatewayInterface;
use Overtrue\EasySms\Contracts\MessageInterface;
use Overtrue\EasySms\EasySms;
use Overtrue\EasySms\Exceptions\InvalidArgumentException;
use Overtrue\EasySms\Message;
use Overtrue\EasySms\Messenger;
use Overtrue\EasySms\Support\Config;
Expand Down

0 comments on commit 103c8df

Please sign in to comment.