Skip to content

Commit

Permalink
Apply fixes from StyleCI (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot authored Jan 21, 2018
1 parent 88cdc36 commit 5168fb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Providers/SlackServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function boot()
$this->mergeConfigFrom(__DIR__.'/../../stubs/slack.php', 'botman.slack');

$this->commands([
SlackRTMListenCommand::class
SlackRTMListenCommand::class,
]);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/SlackRTMDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ public function buildServicePayload($message, $matchingMessage, $additionalParam
],
]);

// else check if is a path
// else check if is a path
} elseif ($attachment instanceof BotManFile && file_exists($attachment->getUrl())) {
$this->file = (new File())
->setTitle(basename($attachment->getUrl()))
Expand Down

0 comments on commit 5168fb4

Please sign in to comment.