vendor/shopware/storefront/Page/Account/Login/AccountLoginPage.php line 11

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Storefront\Page\Account\Login;
  3. use Shopware\Core\Framework\Log\Package;
  4. use Shopware\Core\System\Country\CountryCollection;
  5. use Shopware\Core\System\Salutation\SalutationCollection;
  6. use Shopware\Storefront\Page\Page;
  7. #[Package('customer-order')]
  8. class AccountLoginPage extends Page
  9. {
  10.     /**
  11.      * @var CountryCollection
  12.      */
  13.     protected $countries;
  14.     /**
  15.      * @var SalutationCollection
  16.      */
  17.     protected $salutations;
  18.     public function getCountries(): CountryCollection
  19.     {
  20.         return $this->countries;
  21.     }
  22.     public function setCountries(CountryCollection $countries): void
  23.     {
  24.         $this->countries $countries;
  25.     }
  26.     public function getSalutations(): SalutationCollection
  27.     {
  28.         return $this->salutations;
  29.     }
  30.     public function setSalutations(SalutationCollection $salutations): void
  31.     {
  32.         $this->salutations $salutations;
  33.     }
  34. }