for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Swis\JsonApi\Client;
class ErrorSource
{
/**
* @var string|null
*/
protected $pointer;
protected $parameter;
public function __construct(?string $pointer = null, ?string $parameter = null)
$this->pointer = $pointer;
$this->parameter = $parameter;
}
* @return string|null
public function getPointer()
return $this->pointer;
public function getParameter()
return $this->parameter;