App\Http\Streamers\XSendFileStreamer::stream PHP Method

stream() public method

Stream the current song using Apache's x_sendfile module.
public stream ( )
    public function stream()
    {
        header("X-Sendfile: {$this->song->path}");
        header("Content-Type: {$this->contentType}");
        header('Content-Disposition: inline; filename="' . basename($this->song->path) . '"');
        exit;
    }
XSendFileStreamer