18 lines
316 B
PHP
18 lines
316 B
PHP
<?php
|
|
/*
|
|
Author: Riccardo Di Dato
|
|
Creation Date: 22/dic/2015
|
|
*/
|
|
|
|
abstract class Model extends DaoSaveableDefaultImplementation{
|
|
|
|
public function __construct($saveableObject){
|
|
parent::__construct(static::getCollectionName(),$saveableObject);
|
|
|
|
}
|
|
|
|
abstract public static function getCollectionName();
|
|
|
|
}
|
|
|
|
?>
|