15 lines
204 B
PHP
15 lines
204 B
PHP
|
<?php
|
||
|
namespace Framadate\Services;
|
||
|
|
||
|
/**
|
||
|
* This service provides a standard way to log some informations.
|
||
|
*
|
||
|
* @package Framadate\Services
|
||
|
*/
|
||
|
class LogService {
|
||
|
|
||
|
function __construct() {
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|