Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MarceauKa committed Aug 19, 2016
1 parent 930dd39 commit 0c9e104
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions README.md
@@ -1,5 +1,7 @@
# Laravel Free Mobile SMS

[![Build Status](https://scrutinizer-ci.com/g/AkibaTech/laravel-free-mobile-sms/badges/build.png?b=master)](https://scrutinizer-ci.com/g/AkibaTech/laravel-free-mobile-sms/build-status/master) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/AkibaTech/laravel-free-mobile-sms/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/AkibaTech/laravel-free-mobile-sms/?branch=master)

Ce paquet vous permet d'**envoyer extrêment facilement** des **notifications SMS** sur votre **téléphone Free Mobile** depuis votre application Laravel 5.

Si vous êtes chez **Free Mobile**, cette option est gratuite ! Ne vous en privez pas :)
Expand Down
2 changes: 1 addition & 1 deletion src/CurlClient.php
Expand Up @@ -43,7 +43,7 @@ public function __construct($url, array $options = [])
* Add an option.
*
* @param string $key
* @param mixed $value
* @param string $value
* @return $this
*/
public function addOption($key, $value)
Expand Down
5 changes: 2 additions & 3 deletions src/FreeMobileSms.php
Expand Up @@ -42,8 +42,7 @@ public function __construct(array $credentials = [])
'user',
'pass',
]);
}
else
} else
{
$this->loadCredentialsFromConfig();
}
Expand All @@ -70,7 +69,7 @@ protected function loadCredentialsFromConfig()
/**
* Create the CurlClient client.
*
* @param void
* @param string $message
* @return CurlClient
*/
protected function newClient($message)
Expand Down
1 change: 0 additions & 1 deletion src/Notifications/FreeMobileChannel.php
Expand Up @@ -3,7 +3,6 @@
namespace Akibatech\FreeMobileSms\Notifications;

use Akibatech\FreeMobileSms\FreeMobileSms;
use Akibatech\FreeMobileSms\Notifications\FreeMobileMessage;
use Illuminate\Notifications\Notification;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Notifications/FreeMobileMessage.php
Expand Up @@ -34,7 +34,7 @@ public function __construct($message = '')
/**
* Set the message content.
*
* @param string $content
* @param string $message
* @return self
*/
public function message($message)
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceProvider.php
Expand Up @@ -36,7 +36,7 @@ public function register()

$this->app->bind(FreeMobileSms::class, FreeMobileSms::class);

$this->app->singleton('freemobile', function ($app)
$this->app->singleton('freemobile', function($app)
{
return new FreeMobileSms();
});
Expand Down

0 comments on commit 0c9e104

Please sign in to comment.