Completed
Branch master (b1a275)
by Antonio Carlos
09:59
created
src/Authenticator.php 1 patch
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -85,9 +85,9 @@  discard block
 block discarded – undo
85 85
     /**
86 86
      * Get a config value.
87 87
      *
88
-     * @param $string
88
+     * @param string $string
89 89
      * @param array $children
90
-     * @return mixed
90
+     * @return string|null
91 91
      * @throws \Exception
92 92
      */
93 93
     protected function config($string, $children = [])
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      * Make a session var name for.
224 224
      *
225 225
      * @param null $name
226
-     * @return mixed
226
+     * @return string
227 227
      */
228 228
     protected function makeSessionVarName($name = null)
229 229
     {
@@ -243,8 +243,8 @@  discard block
 block discarded – undo
243 243
     /**
244 244
      * Make a JSON response.
245 245
      *
246
-     * @param $statusCode
247
-     * @return JsonResponse
246
+     * @param integer $statusCode
247
+     * @return IlluminateJsonResponse
248 248
      */
249 249
     protected function makeJsonResponse($statusCode)
250 250
     {
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
     /**
272 272
      * Make a web response.
273 273
      *
274
-     * @param $statusCode
274
+     * @param integer $statusCode
275 275
      * @return \Illuminate\Http\Response
276 276
      */
277 277
     protected function makeHtmlResponse($statusCode)
@@ -321,8 +321,8 @@  discard block
 block discarded – undo
321 321
     /**
322 322
      * Get a session var value.
323 323
      *
324
-     * @param null $var
325
-     * @return mixed
324
+     * @param string $var
325
+     * @return null|Carbon
326 326
      */
327 327
     public function sessionGet($var = null)
328 328
     {
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
     /**
335 335
      * Put a var value to the current session.
336 336
      *
337
-     * @param $var
337
+     * @param string $var
338 338
      * @param $value
339 339
      * @return mixed
340 340
      */
Please login to merge, or discard this patch.