Skip to content

Commit

Permalink
Applied fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
frankkessler authored and StyleCIBot committed Sep 20, 2016
1 parent 0de8dd0 commit ff014ab
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/Models/IncontactToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,23 @@
use Illuminate\Database\Eloquent\SoftDeletes;

/**
* inContact Token Model to store incontact oauth tokens in a database via Eloquent
* inContact Token Model to store incontact oauth tokens in a database via Eloquent.
*
* @property integer $id
* @property int $id
* @property string $access_token
* @property string $refresh_token
* @property string $instance_base_url
* @property string refresh_instance_url
* @property string scope
* @property integer agent_id
* @property integer team_id
* @property integer business_unit
* @property integer $user_id
* @property int agent_id
* @property int team_id
* @property int business_unit
* @property int $user_id
* @property \DateTimeInterface $expires
* @property \DateTimeInterface $created_at
* @property \DateTimeInterface $updated_at
* @property \DateTimeInterface $deleted_at
*/

class IncontactToken extends Model
{
use SoftDeletes;
Expand Down

0 comments on commit ff014ab

Please sign in to comment.