10 lines
156 B
PHP
10 lines
156 B
PHP
|
<?php
|
||
|
|
||
|
namespace Pandy06269\iCalImporter\includes;
|
||
|
|
||
|
interface IEventWriter
|
||
|
{
|
||
|
function close();
|
||
|
function open();
|
||
|
function upload(Event $event);
|
||
|
}
|