We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf99cb3 commit 030a0feCopy full SHA for 030a0fe
src/AbstractBounce.php
@@ -45,7 +45,7 @@ abstract class AbstractBounce
45
46
protected function getBoolSettings(string $name): bool
47
{
48
- return $this->settings[$name]??false;
+ return $this->settings[$name] ?? false;
49
}
50
51
protected function getStringSettings(string $name): string
src/ApiCache.php
@@ -694,10 +694,8 @@ private function hit(string $ip): string
694
695
696
/**
697
- * @param string $cacheScope
698
* @param $value
699
*
700
- * @return string
701
* @throws InvalidArgumentException
702
* @throws Exception
703
*/
0 commit comments