Completed
Pull Request — master (#5)
by Zach
09:01 queued 06:55
created
src/Transmitters/Index.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
     /**
10 10
      * Display the specified resource.
11 11
      *
12
-     * @param  int  $id
13 12
      * @return \Illuminate\Http\Response
14 13
      */
15 14
      public function index()
Please login to merge, or discard this patch.
src/Transmitters/Store.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
     /**
10 10
      * Store a newly created resource in storage.
11 11
      *
12
-     * @param  \Illuminate\Http\Request  $request
13 12
      * @return \Illuminate\Http\Response
14 13
      */
15 14
     public function store()
Please login to merge, or discard this patch.
src/Controller.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     /**
30 30
      * Sets the fractal transformer
31 31
      *
32
-     * @return mixed
32
+     * @return Controller
33 33
      */
34 34
     public function setTransformer($transformer) {
35 35
         $this->transformer = $transformer;
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * Sets model builder
41 41
      *
42
-     * @return mixed
42
+     * @return Controller
43 43
      */
44 44
     public function setModel($model) {
45 45
         $this->model = $model;
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * Sets resource key for fractal
51 51
      *
52
-     * @return mixed
52
+     * @return Controller
53 53
      */
54 54
     public function setResourceKey($resourceKey) {
55 55
         $this->resourceKey = $resourceKey;
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
     /**
88 88
      * Sets the current status code.
89 89
      *
90
-     * @param $statusCode
90
+     * @param integer $statusCode
91 91
      * @return $this
92 92
      */
93 93
     protected function setStatusCode($statusCode)
Please login to merge, or discard this patch.