mirror of
https://github.com/brufdev/many-notes.git
synced 2026-01-31 07:19:16 -06:00
17 lines
239 B
PHP
17 lines
239 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Actions;
|
|
|
|
final class GetPathFromUser
|
|
{
|
|
public function handle(): string
|
|
{
|
|
return sprintf(
|
|
'private/vaults/%u/',
|
|
auth()->user()->id,
|
|
);
|
|
}
|
|
}
|