Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 252 Bytes

YamlTypeEncoder.md

File metadata and controls

15 lines (10 loc) · 252 Bytes

YamlTypeEncoder

<?php

use Chubbyphp\DecodeEncode\Encoder\YamlTypeEncoder;

$encoderType = new YamlTypeEncoder();

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

echo $encoderType->encode(['name' => 'php']);
// 'name: php'