23 lines
342 B
PHP
23 lines
342 B
PHP
<?php
|
|
/*
|
|
Author: Riccardo Di Dato
|
|
Creation Date: 22/feb/2016
|
|
*/
|
|
|
|
class CBSQueueModel extends Model{
|
|
|
|
public function __construct($saveableObject = null){
|
|
parent::__construct($saveableObject);
|
|
if (!$this->hasProperty("retry")){
|
|
$this->retry = 0;
|
|
}
|
|
}
|
|
|
|
public static function getCollectionName(){
|
|
return "CBS_queue";
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|