add doc comments to models

This commit is contained in:
2018-07-14 18:50:25 +02:00
parent f12773ccd1
commit 25cb60d377
8 changed files with 78 additions and 62 deletions
+5
View File
@@ -6,7 +6,12 @@ use Illuminate\Database\Eloquent\Model;
/**
* Row in a data table
*
* @property int $id
* @property int $refs
* @property string $data - JSONB
*/
class Row extends Model
{
public $timestamps = false;
}