Fixed property annotations

This commit is contained in:
Graham Campbell
2015-01-02 12:16:28 +00:00
parent 01b7165f62
commit 5b6b23b0f7
11 changed files with 84 additions and 84 deletions

View File

@@ -6,13 +6,13 @@ use Illuminate\Database\Eloquent\Model;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property string $type
* @property int $active
* @property string $properties
* @property Carbon\Carbon $created_at
* @property Carbon\Carbon $updated_at
* @property Carbon\Carbon $deleted_at
* @property int $id
* @property string $type
* @property int $active
* @property string $properties
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property \Carbon\Carbon $deleted_at
*/
class Service extends Model
{