1: <?php
2:
3: namespace HZSystem\Core\Logger;
4:
5: /*
6: * Copyright (C) 2015 Luca Liscio
7: *
8: * This program is free software: you can redistribute it and/or modify
9: * it under the terms of the GNU Affero General Public License as published by
10: * the Free Software Foundation, either version 3 of the License, or
11: * (at your option) any later version.
12: *
13: * This program is distributed in the hope that it will be useful,
14: * but WITHOUT ANY WARRANTY; without even the implied warranty of
15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: * GNU Affero General Public License for more details.
17: *
18: * You should have received a copy of the GNU Affero General Public License
19: * along with this program. If not, see <http://www.gnu.org/licenses/agpl-3.0.html>.
20: */
21:
22: /**
23: * Riga del log
24: *
25: * @author Luca Liscio <hzkight@h0model.org>
26: * @version 0.0.1 2015/11/30 01:44:20
27: * @copyright 2015 Luca Liscio
28: * @license http://www.gnu.org/licenses/agpl-3.0.html GNU/AGPL3
29: *
30: * @package hzSystem
31: * @subpackage Core\Logger
32: * @filesource
33: */
34:
35: class HZLogRow {
36: public $type;
37: public $date;
38: public $message;
39: }
40: ?>