%PDF- %PDF-
Direktori : /www/varak.net/paste.varak.net-5.6/app/models/ |
Current File : //www/varak.net/paste.varak.net-5.6/app/models/Statistics.php |
<?php /** * Sticky Notes * * An open source lightweight pastebin application * * @package StickyNotes * @author Sayak Banerjee * @copyright (c) 2014 Sayak Banerjee <mail@sayakbanerjee.com> * @license http://www.opensource.org/licenses/bsd-license.php * @link http://sayakbanerjee.com/sticky-notes * @since Version 1.3 * @filesource */ /** * Statistics class * * Stores paste count by source * * @package StickyNotes * @subpackage Models * @author Sayak Banerjee */ class Statistics extends Eloquent { /** * Disable timestamps for the model * * @var bool */ public $timestamps = FALSE; /** * Define fillable properties * * @var array */ protected $fillable = array( 'id', 'date', 'web', 'api', ); }