mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
22 lines
464 B
PHP
22 lines
464 B
PHP
<?php
|
|
/**
|
|
* EGroupware API - Favorites server-side
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @author Nathan Gray <ng@stylite.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @subpackage framework
|
|
* @access public
|
|
* @version $Id$
|
|
*/
|
|
|
|
use EGroupware\Api\Framework\Favorites;
|
|
|
|
/**
|
|
* Favorites service-side
|
|
*
|
|
* @deprecated use Api\Framework\Favorites
|
|
*/
|
|
class egw_favorites extends Favorites {}
|