@@ -126,7 +126,7 @@ |
||
126 | 126 | * |
127 | 127 | * @param null |
128 | 128 | * |
129 | - * @return url |
|
129 | + * @return string |
|
130 | 130 | */ |
131 | 131 | public function getLink() |
132 | 132 | { |
@@ -38,7 +38,7 @@ |
||
38 | 38 | * |
39 | 39 | * @param int $doc |
40 | 40 | * |
41 | - * @return json array |
|
41 | + * @return \Illuminate\Http\JsonResponse array |
|
42 | 42 | */ |
43 | 43 | public function postSupport($doc) |
44 | 44 | { |
@@ -13,14 +13,11 @@ |
||
13 | 13 | use Illuminate\Support\Facades\Validator; |
14 | 14 | use Illuminate\Support\MessageBag; |
15 | 15 | use Illuminate\Database\Eloquent\Model; |
16 | -use Illuminate\Database\Eloquent\SoftDeletes; |
|
17 | 16 | use Session; |
18 | - |
|
19 | 17 | use App\Group; |
20 | 18 | use App\GroupMember; |
21 | 19 | use App\Role; |
22 | 20 | use App\UserMeta; |
23 | - |
|
24 | 21 | use Zizaco\Entrust\Traits\EntrustUserTrait; |
25 | 22 | |
26 | 23 | class User extends Model implements AuthenticatableContract, CanResetPasswordContract |