Completed
Pull Request — master (#18)
by Milroy
04:03
created
src/Exceptions/ApiException.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 namespace Sarala\Exceptions;
6 6
 
7 7
 use Exception;
8
-use Illuminate\Http\Request;
9 8
 use Illuminate\Http\JsonResponse;
9
+use Illuminate\Http\Request;
10 10
 
11 11
 abstract class ApiException extends Exception implements JsonApiExceptionContract
12 12
 {
Please login to merge, or discard this patch.
src/Query/ApiRequestInspector.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 namespace Sarala\Query;
6 6
 
7
-use Illuminate\Support\Str;
8 7
 use Illuminate\Http\Request;
9
-use Sarala\Http\Requests\ApiRequestAbstract;
8
+use Illuminate\Support\Str;
10 9
 use Sarala\Exceptions\UnauthorizedIncludeException;
10
+use Sarala\Http\Requests\ApiRequestAbstract;
11 11
 
12 12
 class ApiRequestInspector
13 13
 {
Please login to merge, or discard this patch.
src/Transformer/TransformerAbstract.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 namespace Sarala\Transformer;
6 6
 
7 7
 use Illuminate\Support\Arr;
8
+use League\Fractal\TransformerAbstract as BaseTransformerAbstract;
8 9
 use Sarala\Links;
9 10
 use Sarala\Query\Fields;
10
-use League\Fractal\TransformerAbstract as BaseTransformerAbstract;
11 11
 
12 12
 abstract class TransformerAbstract extends BaseTransformerAbstract
13 13
 {
Please login to merge, or discard this patch.