read2me-online/itunes-podcast-feed-php

View on GitHub
src/Interfaces/Xml.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Created by PhpStorm.
 * User: ninoskopac
 * Date: 01/05/2018
 * Time: 21:09
 */
declare(strict_types=1);
namespace iTunesPodcastFeed\Interfaces;


interface Xml
{
    /**
     * @return string
     */
    public function getXml(): string;
}