summaryrefslogtreecommitdiffstats
path: root/application/models/Eventreport.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/Eventreport.php')
-rwxr-xr-xapplication/models/Eventreport.php14
1 files changed, 13 insertions, 1 deletions
diff --git a/application/models/Eventreport.php b/application/models/Eventreport.php
index ff94a09..f40b16a 100755
--- a/application/models/Eventreport.php
+++ b/application/models/Eventreport.php
@@ -16,6 +16,7 @@ class Application_Model_Eventreport
protected $_result;
protected $_errors;
protected $_type;
+ protected $_created;
protected $_eventID;
public function __construct(array $options = null)
@@ -133,7 +134,7 @@ class Application_Model_Eventreport
return $this;
}
- public function geType()
+ public function getType()
{
return $this->_type;
}
@@ -143,5 +144,16 @@ class Application_Model_Eventreport
$this->_type = $_type;
return $this;
}
+
+ public function getCreated()
+ {
+ return $this->_created;
+ }
+
+ public function setCreated($_created)
+ {
+ $this->_created = $_created;
+ return $this;
+ }
}