@@ -30,8 +30,6 @@ class PersonalAccessTokens extends AbstractApi
30
30
* @var \DateTimeInterface $last_used_after return tokens used before the given time (inclusive)
31
31
* @var \DateTimeInterface $last_used_before return tokens used after the given time (inclusive)
32
32
* }
33
- *
34
- * @return mixed
35
33
*/
36
34
public function all (array $ parameters = [])
37
35
{
@@ -76,25 +74,16 @@ public function all(array $parameters = [])
76
74
return $ this ->get ('personal_access_tokens ' , $ resolver ->resolve ($ parameters ));
77
75
}
78
76
79
- /**
80
- * @return mixed
81
- */
82
77
public function show (int $ id )
83
78
{
84
79
return $ this ->get ('personal_access_tokens/ ' .self ::encodePath ($ id ));
85
80
}
86
81
87
- /**
88
- * @return mixed
89
- */
90
82
public function current ()
91
83
{
92
84
return $ this ->get ('personal_access_tokens/self ' );
93
85
}
94
86
95
- /**
96
- * @return mixed
97
- */
98
87
public function rotate (int $ id , array $ params = [])
99
88
{
100
89
$ resolver = $ this ->createOptionsResolver ();
@@ -109,9 +98,6 @@ public function rotate(int $id, array $params = [])
109
98
return $ this ->post ('personal_access_tokens/ ' .self ::encodePath ($ id ).'/rotate ' , $ resolver ->resolve ($ params ));
110
99
}
111
100
112
- /**
113
- * @return mixed
114
- */
115
101
public function rotateCurrent (array $ params = [])
116
102
{
117
103
$ resolver = $ this ->createOptionsResolver ();
@@ -126,17 +112,11 @@ public function rotateCurrent(array $params = [])
126
112
return $ this ->post ('personal_access_tokens/self/rotate ' , $ resolver ->resolve ($ params ));
127
113
}
128
114
129
- /**
130
- * @return mixed
131
- */
132
115
public function remove (int $ id )
133
116
{
134
117
return $ this ->delete ('personal_access_tokens/ ' .self ::encodePath ($ id ));
135
118
}
136
119
137
- /**
138
- * @return mixed
139
- */
140
120
public function removeCurrent ()
141
121
{
142
122
return $ this ->delete ('personal_access_tokens/self ' );
0 commit comments