Laravel\Envoy\Hipchat::make PHP Method

make() public static method

Create a new HipChat message instance.
public static make ( string $token, mixed $room, string $from, string $message = null, string $color = 'purple' ) : Hipchat
$token string
$room mixed
$from string
$message string
$color string
return Hipchat
    public static function make($token, $room, $from, $message = null, $color = 'purple')
    {
        return new static($token, $room, $from, $message, $color);
    }