mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 12:34:57 +01:00
33 lines
672 B
PHP
33 lines
672 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Concrete implementation of tracking class for testing
|
||
|
*
|
||
|
* @link http://www.egroupware.org
|
||
|
* @author Nathan Gray
|
||
|
* @package api
|
||
|
* @subpackage tests
|
||
|
* @copyright (c) 2018 Nathan Gray
|
||
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||
|
*/
|
||
|
|
||
|
namespace EGroupware\Api\Storage;
|
||
|
|
||
|
|
||
|
|
||
|
class TestTracking extends Tracking {
|
||
|
|
||
|
var $app = 'test';
|
||
|
|
||
|
/**
|
||
|
* Expose protected parent method so it can be tested
|
||
|
* @param string $message
|
||
|
* @param string|int $receiver
|
||
|
* @return string
|
||
|
*/
|
||
|
public function sanitize_custom_message($message, $receiver)
|
||
|
{
|
||
|
return parent::sanitize_custom_message($message, $receiver);
|
||
|
}
|
||
|
}
|