mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 09:18:07 +08:00
19 lines
472 B
PHP
19 lines
472 B
PHP
|
<?php
|
||
|
|
||
|
namespace Sabre\CardDAV\Backend;
|
||
|
|
||
|
/**
|
||
|
* CardDAV abstract Backend
|
||
|
*
|
||
|
* This class serves as a base-class for addressbook backends
|
||
|
*
|
||
|
* This class doesn't do much, but it was added for consistency.
|
||
|
*
|
||
|
* @copyright Copyright (C) 2007-2013 fruux GmbH (https://fruux.com/).
|
||
|
* @author Evert Pot (http://evertpot.com/)
|
||
|
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
|
||
|
*/
|
||
|
abstract class AbstractBackend implements BackendInterface {
|
||
|
|
||
|
}
|