• File: DefaultMailService.php
  • Full Path: /home/mrjeffgoldman/public_html/kensingtonsearch.net/wp-content/plugins/wp-mail-logging/src/Model/DefaultMailService.php
  • Date Modified: 05/22/2026 3:47 AM
  • File size: 492 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * Created by IntelliJ IDEA.
 * User: noex_
 * Date: 24.09.2018
 * Time: 17:40
 */

namespace No3x\WPML\Model;


class DefaultMailService implements IMailService {

    /**
     * DefaultMailService constructor.
     */
    public function __construct() {

    }

    /**
     * Find a specific model by it's unique ID.
     *
     * @param  integer $id
     * @return false|WPML_Mail
     */
    public function find_one($id)
    {
        return WPML_Mail::find_one($id);
    }
}