We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have derived the Response class like as follow:
Response
public class PdfResponse extends Symfony\Component\HttpFoundation\Response { // ... }
PropertyNotSetInConstructor is raised for the following properties:
PropertyNotSetInConstructor
$content
$headers
$statusCode
$statusText
$version
If You check the class constructor of the Response:
public function __construct(?string $content = '', int $status = 200, array $headers = []) { $this->headers = new ResponseHeaderBag($headers); $this->setContent($content); $this->setStatusCode($status); $this->setProtocolVersion('1.0'); }
You can see that the properties are set.
This is bit the same as #359
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have derived the
Response
class like as follow:PropertyNotSetInConstructor
is raised for the following properties:$content
$headers
$statusCode
$statusText
$version
If You check the class constructor of the
Response
:You can see that the properties are set.
This is bit the same as #359
The text was updated successfully, but these errors were encountered: