for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Swis\JsonApi\Client;
class ErrorSource
{
/**
* @var string|null
*/
protected $pointer;
protected $parameter;
* @param string|null $pointer
* @param string|null $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;