$allowedStyles */ public static function fromStyleAndAllowedStyles(string $style, array $allowedStyles): self { $message = sprintf('Given style "%s" is not allowed. Allowed are "%s"', $style, implode(' ', $allowedStyles)); return new self($message); } }