Skip to content

Commit 5098c14

Browse files
binarykactions-user
authored andcommitted
Fix styling
1 parent 8719494 commit 5098c14

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/helpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function slack(...$args)
4545
{
4646
$instance = new LaravelDeveloper;
4747

48-
collect($args)->each(function($item) use ($instance) {
48+
collect($args)->each(function ($item) use ($instance) {
4949
if (is_string($item)) {
5050
$instance::messageToDevSlack($item);
5151
}

tests/Helpers/SlackHelperTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
namespace Binarcode\LaravelDeveloper\Tests\Helpers;
44

55
use Binarcode\LaravelDeveloper\LaravelDeveloper;
6-
use Binarcode\LaravelDeveloper\Models\ExceptionLog;
76
use Binarcode\LaravelDeveloper\Notifications\DevNotification;
8-
use Binarcode\LaravelDeveloper\Tests\Mock\PayloadMock;
97
use Binarcode\LaravelDeveloper\Tests\TestCase;
108
use Exception;
119
use Illuminate\Notifications\AnonymousNotifiable;
@@ -37,5 +35,4 @@ public function test_slack_helper_can_send_throwable_to_slack()
3735

3836
Notification::assertSentTo(new AnonymousNotifiable, DevNotification::class);
3937
}
40-
4138
}

0 commit comments

Comments
 (0)