33 lines
756 B
PHP
33 lines
756 B
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (GPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/gpl.
|
|
*
|
|
* @category Horde
|
|
* @copyright 2012-2016 Horde LLC
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package IMP
|
|
* @subpackage UnitTests
|
|
*/
|
|
|
|
/**
|
|
* Stub for testing the IMP Itip Imple handler.
|
|
*
|
|
* @author Michael Slusarz <slusarz@horde.org>
|
|
* @category Horde
|
|
* @copyright 2012-2016 Horde LLC
|
|
* @ignore
|
|
* @license http://www.horde.org/licenses/gpl GPL
|
|
* @package IMP
|
|
* @subpackage UnitTests
|
|
*/
|
|
class Imp_Stub_Imap
|
|
{
|
|
public function getIdsOb()
|
|
{
|
|
return new Horde_Imap_Client_Ids();
|
|
}
|
|
}
|