for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace gamringer\JSONPointer\Access;
use gamringer\JSONPointer\VoidValue;
class ObjectAccessor implements Accesses
{
public function &getValue(&$target, $token)
$pointedValue = new VoidValue($target, $token);
if ($this->hasValue($target, $token)) {
$pointedValue = &$target->{$token};
}
return $pointedValue;
public function &setValue(&$target, $token, &$value)
$target->{$token} = &$value;
return $this->getValue($target, $token);
public function unsetValue(&$target, $token)
unset($target->{$token});
public function hasValue(&$target, $token)
return property_exists($target, $token);
public function covers(&$target)
return is_object($target);