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