for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Remorhaz\JSON\Data\Event;
use Remorhaz\JSON\Data\Path\PathInterface;
final class AfterArrayEvent implements AfterArrayEventInterface
{
private $path;
public function __construct(PathInterface $path)
$this->path = $path;
}
public function getPath(): PathInterface
return $this->path;