File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -6,43 +6,43 @@ interface IResourceController
6
6
{
7
7
8
8
/**
9
- * @return string|null
9
+ * @return mixed
10
10
*/
11
- public function index (): ? string ;
11
+ public function index ();
12
12
13
13
/**
14
14
* @param mixed $id
15
- * @return string|null
15
+ * @return mixed
16
16
*/
17
- public function show ($ id ): ? string ;
17
+ public function show ($ id );
18
18
19
19
/**
20
- * @return string|null
20
+ * @return mixed
21
21
*/
22
- public function store (): ? string ;
22
+ public function store ();
23
23
24
24
/**
25
- * @return string|null
25
+ * @return mixed
26
26
*/
27
- public function create (): ? string ;
27
+ public function create ();
28
28
29
29
/**
30
30
* View
31
31
* @param mixed $id
32
- * @return string|null
32
+ * @return mixed
33
33
*/
34
- public function edit ($ id ): ? string ;
34
+ public function edit ($ id );
35
35
36
36
/**
37
37
* @param mixed $id
38
- * @return string|null
38
+ * @return mixed
39
39
*/
40
- public function update ($ id ): ? string ;
40
+ public function update ($ id );
41
41
42
42
/**
43
43
* @param mixed $id
44
- * @return string|null
44
+ * @return mixed
45
45
*/
46
- public function destroy ($ id ): ? string ;
46
+ public function destroy ($ id );
47
47
48
48
}
You can’t perform that action at this time.
0 commit comments