This repository has been archived on 2020-02-18. You can view files and clone it, but cannot push or open issues or pull requests.
ical-drupal-calendar/includes/IEventWriter.php

10 lines
153 B
PHP

<?php
namespace Pandy06269\iCalDrupal\includes;
interface IEventWriter
{
function close();
function open();
function write(Event $event);
}