@@ -12,9 +12,9 @@ discard block |
||
12 | 12 | /** |
13 | 13 | * Make a JSON response. |
14 | 14 | * |
15 | - * @param $statusCode |
|
15 | + * @param integer $statusCode |
|
16 | 16 | * |
17 | - * @return JsonResponse |
|
17 | + * @return IlluminateJsonResponse |
|
18 | 18 | */ |
19 | 19 | protected function makeJsonResponse($statusCode) |
20 | 20 | { |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | /** |
41 | 41 | * Make a web response. |
42 | 42 | * |
43 | - * @param $statusCode |
|
43 | + * @param integer $statusCode |
|
44 | 44 | * |
45 | 45 | * @return \Illuminate\Http\Response |
46 | 46 | */ |
@@ -88,5 +88,10 @@ discard block |
||
88 | 88 | |
89 | 89 | abstract public function getRequest(); |
90 | 90 | |
91 | + /** |
|
92 | + * @param string $string |
|
93 | + * |
|
94 | + * @return string|null |
|
95 | + */ |
|
91 | 96 | abstract protected function config($string, $children = []); |
92 | 97 | } |
@@ -88,5 +88,5 @@ |
||
88 | 88 | |
89 | 89 | abstract public function getRequest(); |
90 | 90 | |
91 | - abstract protected function config($string, $children = []); |
|
91 | + abstract protected function config($string, $children = [ ]); |
|
92 | 92 | } |
@@ -25,5 +25,5 @@ |
||
25 | 25 | return $this->auth; |
26 | 26 | } |
27 | 27 | |
28 | - abstract public function config($string, $children = []); |
|
28 | + abstract public function config($string, $children = [ ]); |
|
29 | 29 | } |
@@ -61,7 +61,7 @@ |
||
61 | 61 | ); |
62 | 62 | } |
63 | 63 | |
64 | - abstract protected function config($string, $children = []); |
|
64 | + abstract protected function config($string, $children = [ ]); |
|
65 | 65 | |
66 | 66 | abstract public function getRequest(); |
67 | 67 | } |
@@ -21,5 +21,5 @@ |
||
21 | 21 | |
22 | 22 | abstract public function getRequest(); |
23 | 23 | |
24 | - abstract protected function config($string, $children = []); |
|
24 | + abstract protected function config($string, $children = [ ]); |
|
25 | 25 | } |