for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Knp\Bundle\SnappyBundle\Snappy\Response;
class PdfResponse extends SnappyResponse
{
public function __construct($content, $fileName = 'output.pdf', $contentType = 'application/pdf', $contentDisposition = 'attachment', $status = 200, $headers = [])
parent::__construct($content, $fileName, $contentType, $contentDisposition, $status, $headers);
}