🤖 Auto commit for release 'develop' on 2025-05-25

This commit is contained in:
JC5
2025-05-25 06:36:22 +02:00
parent 5a3240f69d
commit 39914e2380
74 changed files with 192 additions and 211 deletions

View File

@@ -25,7 +25,6 @@ namespace FireflyIII\Http\Controllers;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Hash;
use Exception;
use FireflyIII\Events\UserChangedEmail;
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Exceptions\ValidationException;
@@ -157,7 +156,7 @@ class ProfileController extends Controller
if (0 === $count) {
/** @var ClientRepository $repository */
$repository = app(ClientRepository::class);
$name = sprintf('%s Personal Access Grant Client',config('app.name'));
$name = sprintf('%s Personal Access Grant Client', config('app.name'));
$repository->createPersonalAccessClient(null, $name, 'http://localhost');
}
@@ -363,7 +362,7 @@ class ProfileController extends Controller
*
* @return Redirector|RedirectResponse
*
* @throws Exception
* @throws \Exception
*/
public function regenerate(Request $request)
{