@@ -88,9 +88,8 @@ class Config implements ConfigInterface
*/
public function getFinder(): iterable
{
- if (null === $this->finder) {
- $this->finder = new Finder();
- }
+ // to master line
+ $this->finder ??= new Finder();
return $this->finder;
}