Newscoop\NewscoopBundle\Controller\AttachmentsController::openFileInBrowser PHP Method

openFileInBrowser() private method

private openFileInBrowser ( $attachment, $attachmentService )
    private function openFileInBrowser($attachment, $attachmentService)
    {
        $file = $attachmentService->getStorageLocation($attachment);
        $response = new BinaryFileResponse($file);
        return $response;
    }