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 a1dfcd5 commit f8c0f9bCopy full SHA for f8c0f9b
src/Exception/DiscoveryFailedException.php
@@ -17,8 +17,7 @@ final class DiscoveryFailedException extends \Exception implements Exception
17
private $exceptions;
18
19
/**
20
- *
21
- * @param string $message
+ * @param string $message
22
* @param \Exception[] $exceptions
23
*/
24
public function __construct($message, array $exceptions = [])
@@ -37,7 +36,7 @@ public static function create($exceptions)
37
36
foreach ($exceptions as $e) {
38
$message .= "\n - ".$e->getMessage();
39
}
40
- $message.="\n\n";
+ $message .= "\n\n";
41
42
return new self($message, $exceptions);
43
0 commit comments