Remove class annotations

This commit is contained in:
James Brooks 2015-06-16 08:27:31 +01:00
parent 2eb4bd1e69
commit 26ff4dc85a
10 changed files with 0 additions and 94 deletions

View File

@ -17,18 +17,6 @@ use Illuminate\Database\Eloquent\SoftDeletes;
use McCool\LaravelAutoPresenter\HasPresenter;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property string $name
* @property string $description
* @property int $status
* @property string $link
* @property int $order
* @property int $group_id
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property \Carbon\Carbon $deleted_at
*/
class Component extends Model implements HasPresenter
{
use SoftDeletes, ValidatingTrait;

View File

@ -14,14 +14,6 @@ namespace CachetHQ\Cachet\Models;
use Illuminate\Database\Eloquent\Model;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property string $name
* @property int $order
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property \Carbon\Carbon $deleted_at
*/
class ComponentGroup extends Model
{
use ValidatingTrait;

View File

@ -17,18 +17,6 @@ use Illuminate\Database\Eloquent\SoftDeletes;
use McCool\LaravelAutoPresenter\HasPresenter;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property int $component_id
* @property string $name
* @property int $status
* @property string $message
* @property \Carbon\Carbon $scheduled_at
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property \Carbon\Carbon $deleted_at
* @property string $humanStatus
*/
class Incident extends Model implements HasPresenter
{
use SoftDeletes, ValidatingTrait;

View File

@ -15,14 +15,6 @@ use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Str;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property string $name
* @property string $slug
* @property string $template
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class IncidentTemplate extends Model
{
use ValidatingTrait;

View File

@ -20,17 +20,6 @@ use Jenssegers\Date\Date;
use McCool\LaravelAutoPresenter\HasPresenter;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property string $name
* @property string $suffix
* @property string $description
* @property float $default_value
* @property int $calc_type
* @property int $display_chart
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class Metric extends Model implements HasPresenter
{
use ValidatingTrait;

View File

@ -15,13 +15,6 @@ use Illuminate\Database\Eloquent\Model;
use McCool\LaravelAutoPresenter\HasPresenter;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property int $metric_id
* @property int $value
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class MetricPoint extends Model implements HasPresenter
{
use ValidatingTrait;

View File

@ -13,13 +13,6 @@ namespace CachetHQ\Cachet\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string $name
* @property string $value
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class Setting extends Model
{
/**

View File

@ -15,15 +15,6 @@ use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property string $email
* @property string $verify_code
* @property \Carbon\Carbon $verified_at
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property \Carbon\Carbon $deleted_at
*/
class Subscriber extends Model
{
use SoftDeletes, ValidatingTrait;

View File

@ -14,13 +14,6 @@ namespace CachetHQ\Cachet\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Str;
/**
* @property int $id
* @property string $name
* @property string $slug
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class Tag extends Model
{
/**

View File

@ -20,19 +20,6 @@ use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Support\Facades\Hash;
use Watson\Validating\ValidatingTrait;
/**
* @property int $id
* @property string $username
* @property string $password
* @property string $remember_token
* @property string $google_2fa_secret
* @property string $email
* @property string $api_key
* @property int $active
* @property int $level
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
*/
class User extends Model implements AuthenticatableContract, CanResetPasswordContract
{
use Authenticatable, CanResetPassword, ValidatingTrait;