php-hotfix/src/Service/IxService.php

28 lines
408 B
PHP

<?php
namespace NoccyLabs\Hotfix\Service;
class IxService implements ServiceInterface, ReaderInterface, PublisherInterface
{
public function getId()
{
return "ix";
}
public function getInfo()
{
return "Use the ix.io pastebin for accessing patches";
}
public function publish(Hotfix $hotfix)
{
}
public function read($url)
{
}
}