for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Swaggest\JsonDiff;
class ModifiedPathDiff
{
public function __construct($path, $original, $new)
$this->path = $path;
$this->original = $original;
$this->new = $new;
}
/**
* @var string
*/
public $path;
* @var mixed
public $original;
public $new;