Update notify.class.php

This commit is contained in:
Philippe Grand 2018-09-29 18:41:31 +02:00 committed by GitHub
parent 8ef9a301b3
commit 9a2fd7defe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,10 +31,26 @@ require_once DOL_DOCUMENT_ROOT .'/core/class/CMailFile.class.php';
*/
class Notify
{
var $id;
var $db;
var $error;
var $errors=array();
/**
* @var int ID
*/
public $id;
/**
* @var DoliDB Database handler.
*/
public $db;
/**
* @var string Error string
* @see errors
*/
public $error;
/**
* @var string[] Error codes (or messages)
*/
public $errors = array();
var $author;
var $ref;