for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Swaggest\JsonDiff\JsonPatch;
abstract class OpPathValue extends OpPath
{
public $value;
public function __construct($path = null, $value = null)
parent::__construct($path);
$this->value = $value;
}