Laravel\Envoy\Slack::make PHP Method

make() public static method

Create a new Slack message instance.
public static make ( string $hook, mixed $channel = '', string $message = null, array $options = [] ) : Slack
$hook string
$channel mixed
$message string
$options array
return Slack
    public static function make($hook, $channel = '', $message = null, $options = [])
    {
        return new static($hook, $channel, $message, $options);
    }