Skip to content

Commit

Permalink
Apply fixes from StyleCI (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot authored Jan 21, 2018
1 parent ddb4422 commit bf8f43d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Providers/FacebookServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

namespace BotMan\Drivers\Facebook\Providers;

use Illuminate\Support\ServiceProvider;
use BotMan\BotMan\Drivers\DriverManager;
use BotMan\Drivers\Facebook\FacebookAudioDriver;
use BotMan\Drivers\Facebook\Commands\Nlp;
use BotMan\Drivers\Facebook\FacebookDriver;
use BotMan\Drivers\Facebook\FacebookFileDriver;
use BotMan\Drivers\Facebook\FacebookAudioDriver;
use BotMan\Drivers\Facebook\FacebookImageDriver;
use BotMan\Drivers\Facebook\FacebookLocationDriver;
use BotMan\Drivers\Facebook\FacebookVideoDriver;
use BotMan\Studio\Providers\StudioServiceProvider;
use Illuminate\Support\ServiceProvider;
use BotMan\Drivers\Facebook\Commands\Nlp;
use BotMan\Drivers\Facebook\FacebookLocationDriver;
use BotMan\Drivers\Facebook\Commands\AddGreetingText;
use BotMan\Drivers\Facebook\Commands\WhitelistDomains;
use BotMan\Drivers\Facebook\Commands\AddPersistentMenu;
Expand All @@ -26,7 +26,7 @@ class FacebookServiceProvider extends ServiceProvider
*/
public function boot()
{
if (!$this->isRunningInBotManStudio()) {
if (! $this->isRunningInBotManStudio()) {
$this->loadDrivers();

$this->publishes([
Expand Down Expand Up @@ -67,4 +67,4 @@ protected function isRunningInBotManStudio()
{
return class_exists(StudioServiceProvider::class);
}
}
}

0 comments on commit bf8f43d

Please sign in to comment.