Neomerx\JsonApi\Codec\CodecMatcher::getDecoder PHP 메소드

getDecoder() 공개 메소드

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