diff --git a/src/Illuminate/Notifications/Messages/SlackAttachment.php b/src/Illuminate/Notifications/Messages/SlackAttachment.php index eed309f70f2e..fbb9fc5e96b9 100644 --- a/src/Illuminate/Notifications/Messages/SlackAttachment.php +++ b/src/Illuminate/Notifications/Messages/SlackAttachment.php @@ -117,7 +117,7 @@ class SlackAttachment * Set the title of the attachment. * * @param string $title - * @param string $url + * @param string|null $url * @return $this */ public function title($title, $url = null) @@ -286,8 +286,8 @@ public function timestamp($timestamp) * Set the author. * * @param string $name - * @param string $link - * @param string $icon + * @param string|null $link + * @param string|null $icon * @return $this */ public function author($name, $link = null, $icon = null)