| Total Complexity | 2 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 29 | class PersonalSettings implements IPersonalProviderSettings { | ||
| 30 | |||
| 31 | /** @var string */ | ||
| 32 | private $gateway; | ||
| 33 | |||
| 34 | 	public function __construct(string $gateway) { | ||
| 35 | $this->gateway = $gateway; | ||
| 36 | } | ||
| 37 | |||
| 38 | /** | ||
| 39 | * @return Template | ||
| 40 | * | ||
| 41 | * @since 15.0.0 | ||
| 42 | */ | ||
| 43 | 	public function getBody(): Template { | ||
| 47 | } | ||
| 48 | |||
| 50 |