<?php declare(strict_types=1);
namespace Shopware\Storefront\Page\Account\Login;
use Shopware\Core\System\Country\CountryCollection;
use Shopware\Core\System\Salutation\SalutationCollection;
use Shopware\Storefront\Page\Page;
class AccountLoginPage extends Page
{
/**
* @var CountryCollection
*/
protected $countries;
/**
* @var SalutationCollection
*/
protected $salutations;
public function getCountries(): CountryCollection
{
return $this->countries;
}
public function setCountries(CountryCollection $countries): void
{
$this->countries = $countries;
}
public function getSalutations(): SalutationCollection
{
return $this->salutations;
}
public function setSalutations(SalutationCollection $salutations): void
{
$this->salutations = $salutations;
}
}