Completed
Push — master ( 1438b4...c5f82e )
by Nils
08:37 queued 04:58
created
src/OpenSkill/Datatable/Columns/ColumnOrder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     }
32 32
 
33 33
     /**
34
-     * @return bool
34
+     * @return string
35 35
      */
36 36
     public function isAscending()
37 37
     {
Please login to merge, or discard this patch.
src/OpenSkill/Datatable/Datatable.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use OpenSkill\Datatable\Providers\Provider;
8 8
 use OpenSkill\Datatable\Versions\VersionEngine;
9 9
 use OpenSkill\Datatable\Views\DatatableView;
10
-use Symfony\Component\VarDumper\Cloner\Data;
11 10
 
12 11
 /**
13 12
  * Class Datatable
Please login to merge, or discard this patch.
src/OpenSkill/Datatable/Queries/Parser/QueryParser.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace OpenSkill\Datatable\Queries\Parser;
4 4
 
5
-use Illuminate\Http\JsonResponse;
6 5
 use Illuminate\Http\Request;
7 6
 use OpenSkill\Datatable\Columns\ColumnConfiguration;
8 7
 use OpenSkill\Datatable\Queries\QueryConfiguration;
9
-use Symfony\Component\HttpFoundation\Response;
10 8
 
11 9
 /**
12 10
  * Interface DTQueryParser
Please login to merge, or discard this patch.
src/OpenSkill/Datatable/Responses/Datatable19ResponseCreator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      * @param ResponseData $data The processed data.
16 16
      * @param QueryConfiguration $queryConfiguration the query configuration for the current request.
17 17
      * @param array $columnConfiguration the column configurations for the current data table.
18
-     * @return Response the response that should be returned to the client.
18
+     * @return JsonResponse the response that should be returned to the client.
19 19
      */
20 20
     public function createResponse(ResponseData $data, QueryConfiguration $queryConfiguration, array $columnConfiguration)
21 21
     {
Please login to merge, or discard this patch.
src/OpenSkill/Datatable/Views/DatatableView.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      * DatatableView constructor, will take a view as a string if a custom one should be used. will also take the
23 23
      * column configurations to provide out of the box headers for the view.
24 24
      * If no columns are given the user must provide them before building the view.
25
-     * @param array $columnConfiguration The columnConfiguration of the the server side if available
25
+     * @param string|null $columnConfiguration The columnConfiguration of the the server side if available
26 26
      * @param Version $version The version that supports the current request
27 27
      * @param string $view the name of the view that should be rendered
28 28
      */
Please login to merge, or discard this patch.