for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace gamringer\JSONPointer;
class VoidValue
{
protected $owner;
protected $target;
public function __construct(&$owner = null, string $target = null)
$this->owner = $owner;
$this->target = $target;
}
public function &getOwner()
return $this->owner;
public function getTarget()
return $this->target;