Placeholder licenses model

This commit is contained in:
snipe
2013-11-15 14:59:50 -05:00
parent 9364c46c2d
commit e9fe59444f
+23
View File
@@ -0,0 +1,23 @@
<?php
class License extends Eloquent {
/**
* Deletes a category
*
* @return bool
*/
protected $table = 'licenses';
public function delete()
{
// Delete the license
return parent::delete();
}
}