Completed
Pull Request — master (#5)
by Zach
01:54
created
src/Fractal.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace NavJobs\Transmit;
4 4
 
5 5
 use League\Fractal\Manager;
6
-use League\Fractal\ParamBag;
7 6
 use League\Fractal\Pagination\PaginatorInterface;
7
+use League\Fractal\ParamBag;
8 8
 use League\Fractal\Serializer\SerializerAbstract;
9 9
 use NavJobs\Transmit\Exceptions\InvalidTransformation;
10 10
 use NavJobs\Transmit\Exceptions\NoTransformerSpecified;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
164 164
     /**
165 165
      * Specify the includes.
166 166
      *
167
-     * @param array|string $includes Array or csv string of resources to include
167
+     * @param string $includes Array or csv string of resources to include
168 168
      *
169 169
      * @return $this
170 170
      */
Please login to merge, or discard this patch.
src/Traits/Destroy.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace NavJobs\Transmit\Transmitters;
4 4
 
5
-use NavJobs\Transmit\Controller;
6
-
7 5
 trait Destroy
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
src/Traits/Index.php 2 patches
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.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace NavJobs\Transmit\Transmitters;
4 4
 
5
-use NavJobs\Transmit\Controller;
6
-
7 5
 trait Index
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
src/Traits/Show.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace NavJobs\Transmit\Transmitters;
4 4
 
5
-use NavJobs\Transmit\Controller;
6
-
7 5
 trait Show
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
src/Traits/Store.php 2 patches
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.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace NavJobs\Transmit\Transmitters;
4 4
 
5
-use NavJobs\Transmit\Controller;
6
-
7 5
 trait Store
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
src/Traits/Update.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace NavJobs\Transmit\Transmitters;
4 4
 
5
-use NavJobs\Transmit\Controller;
6 5
 use Illuminate\Http\Request;
7 6
 
8 7
 trait Update
Please login to merge, or discard this patch.