Laravel\Envoy\Slack::make PHP Метод

make() публичный статический Метод

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
Результат Slack
    public static function make($hook, $channel = '', $message = null, $options = [])
    {
        return new static($hook, $channel, $message, $options);
    }