Skip to content

Commit

Permalink
fix: for actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbutcher committed Dec 16, 2024
1 parent c5828bf commit 77e0422
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 92 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"paragonie/constant_time_encoding": "^2.7"
},
"require-dev": {
"laravel/breeze": "^2.0",
"laravel/jetstream": "^5.0",
"laravel/sanctum": "^4.0",
"livewire/livewire": "^3.3.5",
Expand Down
89 changes: 0 additions & 89 deletions src/HasProfilePhoto.php

This file was deleted.

2 changes: 1 addition & 1 deletion stubs/jetstream/app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected function casts(): array
/**
* Get the URL to the user's profile photo.
*/
public function profilePhotoUrl(): Attribute
protected function profilePhotoUrl(): Attribute
{
return filter_var($this->profile_photo_path, FILTER_VALIDATE_URL)
? Attribute::get(fn () => $this->profile_photo_path)
Expand Down
2 changes: 1 addition & 1 deletion stubs/jetstream/app/Models/UserWithTeams.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class User extends Authenticatable
/**
* Get the URL to the user's profile photo.
*/
public function profilePhotoUrl(): Attribute
protected function profilePhotoUrl(): Attribute
{
return filter_var($this->profile_photo_path, FILTER_VALIDATE_URL)
? Attribute::get(fn () => $this->profile_photo_path)
Expand Down
1 change: 1 addition & 0 deletions tests/OrchestraTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ protected function defineEnvironment($app): void
{
$app['config']->set('app.debug', true);
$app['config']->set('database.default', 'testing');
$app['config']->set('cache.default', 'file');

$app['config']->set('services.github', [
'client_id' => 'github-client-id',
Expand Down

0 comments on commit 77e0422

Please sign in to comment.