for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Illuminate\Notifications\Messages;
class SlackAttachment
{
/**
* The attachment's title.
*
* @var string
*/
public $title;
* The attachment's URL.
public $url;
* The attachment's text content.
public $content;
* The attachment's fields.
* @var array
public $fields;
* Set the title of the attachment.
* @param string $title
* @param string $url
* @return $this
public function title($title, $url = null)
$this->title = $title;
$this->url = $url;
return $this;
}
* Set the content (text) of the attachment.
* @param string $content
public function content($content)
$this->content = $content;
* Set the fields of the attachment.
* @param array $fields
public function fields(array $fields)
$this->fields = $fields;