for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Goetas\Mail\ToSwiftMailParser\Exception;
class EndOfPartReachedException extends \Exception
{
protected $data = array();
public function __construct(string $data)
$this->data = $data;
$data
string
array
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
parent::__construct();
}
public function getData(): string
return $this->data;
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..