Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cholladay0816 authored and github-actions[bot] committed Aug 23, 2023
1 parent fdc164c commit 735f48e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions app/Listeners/Ticket/Submitted/Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@

class Email
{

/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{

}

/**
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/TicketTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ class TicketTest extends TestCase
use RefreshDatabase;

/** @test */
function a_ticket_has_a_user() {
public function a_ticket_has_a_user()
{
$user = User::factory()->create();
$ticket = Ticket::factory()->create(['user_id' => $user->id]);

$this->assertEquals($ticket->user->id, $user->id);
}

}

0 comments on commit 735f48e

Please sign in to comment.