Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 256 Bytes

YamlTypeDecoder.md

File metadata and controls

15 lines (10 loc) · 256 Bytes

YamlTypeDecoder

<?php

use Chubbyphp\DecodeEncode\Decoder\YamlTypeDecoder;

$decoderType = new YamlTypeDecoder();

echo $decoderType->getContentType();
// 'application/x-yaml'

print_r($decoderType->decode('name: php'));
// ['name' => 'php']