Neomerx\JsonApi\Codec\CodecMatcher::getDecoder PHP Method

getDecoder() public method

public getDecoder ( )
    public function getDecoder()
    {
        if ($this->foundDecoder instanceof Closure) {
            $closure = $this->foundDecoder;
            $this->foundDecoder = $closure();
        }
        return $this->foundDecoder;
    }