Skip to content

Commit

Permalink
styleci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ragingdave committed Mar 12, 2020
1 parent 46b127a commit a0eb725
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/ActivityLoggerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ public function it_will_log_a_custom_created_at_date_time()
/** @test */
public function it_will_disable_logs_for_a_callback()
{
$result = activity()->withoutLogs(function() {
$result = activity()->withoutLogs(function () {
activity()->log('created');
return 'hello';
});
Expand All @@ -354,7 +354,7 @@ public function it_will_disable_logs_for_a_callback()
/** @test */
public function it_will_disable_logs_for_a_callback_without_affecting_previous_state()
{
activity()->withoutLogs(function() {
activity()->withoutLogs(function () {
activity()->log('created');
});

Expand All @@ -370,7 +370,7 @@ public function it_will_disable_logs_for_a_callback_without_affecting_previous_s
{
activity()->disableLogging();

activity()->withoutLogs(function() {
activity()->withoutLogs(function () {
activity()->log('created');
});

Expand All @@ -387,7 +387,7 @@ public function it_will_disable_logs_for_a_callback_without_affecting_previous_s
activity()->disableLogging();

try {
activity()->withoutLogs(function() {
activity()->withoutLogs(function () {
activity()->log('created');
throw new Exception('OH NO');
});
Expand Down

0 comments on commit a0eb725

Please sign in to comment.