Skip to content

Commit

Permalink
style: apply php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
josepostiga authored and actions-user committed Apr 2, 2022
1 parent 933f75b commit 4262d47
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/Concerns/HasSearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
trait HasSearch
{
protected array $search_bindings = [];
//protected array $searchable = [];
// protected array $searchable = [];

/**
* Creates the search scope.
Expand Down
2 changes: 1 addition & 1 deletion app/Providers/EventServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class EventServiceProvider extends ServiceProvider
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
//AssignRoleToUserAfterRegistration::class
// AssignRoleToUserAfterRegistration::class
],
SocialiteWasCalled::class => [
'SocialiteProviders\\Discord\\DiscordExtendSocialite@handle',
Expand Down
2 changes: 1 addition & 1 deletion database/factories/LinkFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function definition()
'title' => $this->faker->realText(30),
'description' => $this->faker->text(50),
'status' => $this->faker->randomKey(LinkStatusType::toArray()),
//'cover_image' => $this->faker->image('public/dummy')
// 'cover_image' => $this->faker->image('public/dummy')
'cover_image' => Storage::disk(Link::coverPhotosDisk())->putFile(Link::coverPhotosFolder(), $this->faker->file(resource_path('/img/dummy'))),
// 'cover_image' => $this->faker->image(
// //Storage::disk(Link::coverPhotosDisk())->path(Link::coverPhotosFolder()),
Expand Down
2 changes: 1 addition & 1 deletion tests/Feature/Http/Frontend/LoginTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

it('render login screen', function () {
$response = $this->get(route('login'));
//$response->assertStatus(200);
// $response->assertStatus(200);
$this->assertTrue(200 === $response->status(), $response->getContent());
});

Expand Down

0 comments on commit 4262d47

Please sign in to comment.