1
0
Fork 0
mirror of https://github.com/buddypress/buddypress.git synced 2026-07-22 20:56:55 +08:00
buddypress/tests/phpunit/includes/mock-mailer.php

21 lines
310 B
PHP

<?php
/**
* Mock email delivery implementation.
*
* @since 2.5.0
*/
class BP_UnitTest_Mailer implements BP_Email_Delivery {
/**
* Send email(s).
*
* @since 2.5.0
*
* @param BP_Email $email Email to send.
* @return bool
*/
public function bp_email( BP_Email $email ) {
return true;
}
}