blancks/fast-jsonpatch-php

View on GitHub
src/json/handlers/JsonHandlerAwareInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace blancks\JsonPatch\json\handlers;

interface JsonHandlerAwareInterface
{
    public function setJsonHandler(JsonHandlerInterface $JsonHandler): void;
}