* @category Horde * @copyright 2010-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ /** * Null implementation of the quota driver. * * @author Michael Slusarz * @category Horde * @copyright 2010-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ class IMP_Quota_Null extends IMP_Quota { /** */ public function getQuota($mailbox = null) { return array( 'limit' => 0, 'usage' => 0 ); } }