Everything is property!

This commit is contained in:
James Brooks
2015-01-02 12:07:51 +00:00
parent 5479848719
commit e0a6e795b1
11 changed files with 89 additions and 36 deletions

View File

@@ -10,14 +10,17 @@ use Illuminate\Database\Eloquent\SoftDeletingTrait;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property int $user_id
* @property string $name
* @property string $description
* @property int $status
* @property string $link
* @property string $tags
* @property int $order
* @property int $id
* @property int $user_id
* @property string $name
* @property string $description
* @property int $status
* @property string $link
* @property string $tags
* @property int $order
* @property Carbon\Carbon $created_at
* @property Carbon\Carbon $updated_at
* @property Carbon\Carbon $deleted_at
*/
class Component extends Model implements TransformableInterface
{