Skip to content

Commit 5583829

Browse files
committed
fix getStringSettings / getArraySettings
1 parent 9ff7701 commit 5583829

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AbstractBounce.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ abstract class AbstractBounce
3737

3838
protected function getStringSettings(string $name): string
3939
{
40-
$this->settings[$name];
40+
return $this->settings[$name];
4141
}
4242

4343
protected function getArraySettings(string $name): array
4444
{
45-
$this->settings[$name];
45+
return $this->settings[$name];
4646
}
4747

4848
/**

0 commit comments

Comments
 (0)