rosavox/lib/alveolata/email/implementation-legacy/wrapper-class.php
2025-05-23 07:33:29 +00:00

26 lines
426 B
PHP

<?php
namespace alveolata\email\implementations\legacy;
require_once(DIR_ALVEOLATA . '/email/abstract/interface.php');
require_once(DIR_ALVEOLATA . '/email/implementation-legacy/functions.php');
/**
*/
class implementation implements interface_email
{
/**
*/
public send(
\alveolata\email\struct_credentials $credentials,
\alveolata\email\struct_data $data
) : void
{
send($credentials, $data);
}
}
?>