1
0
mirror of https://github.com/danog/LibDNSNative.git synced 2024-11-29 20:19:08 +01:00
LibDNSNative/lib/NativeEncoderFactory.php
2019-07-15 14:59:42 +02:00

36 lines
829 B
PHP

<?php declare(strict_types = 1);
/**
* Creates NativeEncoder objects.
*
* PHP version 5.4
*
* @category LibDNS
* @package Encoder
* @author Daniil Gentili <https://daniil.it>, Chris Wright <https://github.com/DaveRandom>
* @copyright Copyright (c) Chris Wright <https://github.com/DaveRandom>
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 2.0.0
*/
namespace danog\LibDNSNative;
/**
* Creates NativeEncoder objects.
*
* @category LibDNS
* @package Encoder
* @author Daniil Gentili <https://daniil.it>, Chris Wright <https://github.com/DaveRandom>
*/
class NativeEncoderFactory
{
/**
* Create a new Encoder object.
*
* @return \LibDNS\Encoder\Encoder
*/
public function create(): NativeEncoder
{
return new NativeEncoder();
}
}