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