Skip to content

Instantly share code, notes, and snippets.

@koyablue
Last active November 4, 2021 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koyablue/5eb0257e22b7ceca7a2af9df60f1d2dc to your computer and use it in GitHub Desktop.
Save koyablue/5eb0257e22b7ceca7a2af9df60f1d2dc to your computer and use it in GitHub Desktop.
<?php
namespace App\Packages\FrontPage\Shared\UseCase;
use App\Packages\FrontPage\Shared\Domain\Models\Locale;
use App\Packages\FrontPage\Shared\Presentation\Dto\GetLocaleSessionResponse;
interface LocaleSessionInterface
{
public function getLocaleSessionKey(): string;
public function setLocaleSession(Locale $locale);
public function getLocaleSession(): GetLocaleSessionResponse;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment