Completed
Push — master ( 87d4f7...e41c6a )
by Saurabh
01:41
created
src/Http/Controllers/Admin/DocumentController.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 
5 5
 use Carbon\Carbon;
6 6
 use Illuminate\Http\Request;
7
-use Sausin\Signere\Document;
8 7
 use Illuminate\Support\Facades\Config;
8
+use Sausin\Signere\Document;
9 9
 use Sausin\Signere\Http\Controllers\Controller;
10 10
 
11 11
 class DocumentController extends Controller
Please login to merge, or discard this patch.
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      *
45 45
      * @param  string $documentId
46 46
      * @param  string $signeeRefId
47
-     * @return \Illuminate\Http\Response
47
+     * @return string
48 48
      */
49 49
     public function show(string $documentId, string $signeeRefId)
50 50
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * a document response object.
59 59
      *
60 60
      * @param  Request $request
61
-     * @return \Illuminate\Http\Response
61
+     * @return string
62 62
      */
63 63
     public function store(Request $request)
64 64
     {
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      *
82 82
      * @param  Request $request
83 83
      * @param  string  $documentId
84
-     * @return \Illuminate\Http\Response
84
+     * @return string
85 85
      */
86 86
     public function update(Request $request, string $documentId)
87 87
     {
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      *
111 111
      * @param  Request $request
112 112
      * @param  string  $documentId
113
-     * @return \Illuminate\Http\Response
113
+     * @return string
114 114
      */
115 115
     public function destroy(Request $request, string $documentId)
116 116
     {
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/EventsController.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Sausin\Signere\Http\Controllers\Admin;
4 4
 
5
-use Sausin\Signere\Events;
6 5
 use Illuminate\Http\Request;
6
+use Sausin\Signere\Events;
7 7
 use Sausin\Signere\Http\Controllers\Controller;
8 8
 
9 9
 class EventsController extends Controller
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,7 @@
 block discarded – undo
28 28
      * Returns the EventsQueue encryptionKey
29 29
      * as a base64 encoded string.
30 30
      *
31
-     * @param  Request $request
32
-     * @return \Illuminate\Http\Response
31
+     * @return string
33 32
      */
34 33
     public function __invoke()
35 34
     {
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/ExternalSignController.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 Sausin\Signere\Http\Controllers\Admin;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use Sausin\Signere\ExternalSign;
7 6
 use Illuminate\Support\Facades\Config;
7
+use Sausin\Signere\ExternalSign;
8 8
 use Sausin\Signere\Http\Controllers\Controller;
9 9
 
10 10
 class ExternalSignController extends Controller
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * Get the URLs to sign the Document.
30 30
      *
31 31
      * @param  string $documentId
32
-     * @return \Illuminate\Http\Response
32
+     * @return string
33 33
      */
34 34
     public function index(string $documentId)
35 35
     {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      * @param  string $documentId
45 45
      * @param  string $domain
46 46
      * @param  string $language
47
-     * @return \Illuminate\Http\Response
47
+     * @return string
48 48
      */
49 49
     public function show(string $documentId, string $domain, string $language)
50 50
     {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * Creates an externalsign request.
58 58
      *
59 59
      * @param  Request $request
60
-     * @return \Illuminate\Http\Response
60
+     * @return string
61 61
      */
62 62
     public function store(Request $request)
63 63
     {
Please login to merge, or discard this patch.
src/Http/Controllers/RequestIdController.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 Sausin\Signere\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use Sausin\Signere\RequestId;
7 6
 use Illuminate\Support\Facades\Config;
7
+use Sausin\Signere\RequestId;
8 8
 
9 9
 class RequestIdController extends Controller
10 10
 {
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      * Check if a SignereID session is completed or not.
29 29
      *
30 30
      * @param  string $requestId
31
-     * @return \Illuminate\Http\Response
31
+     * @return string
32 32
      */
33 33
     public function show(string $requestId)
34 34
     {
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      * Creates a SignereID request, and returns a url.
42 42
      *
43 43
      * @param  Request $request
44
-     * @return \Illuminate\Http\Response
44
+     * @return string
45 45
      */
46 46
     public function store(Request $request)
47 47
     {
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/RequestIdController.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 Sausin\Signere\Http\Controllers\Admin;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use Sausin\Signere\RequestId;
7 6
 use Sausin\Signere\Http\Controllers\Controller;
7
+use Sausin\Signere\RequestId;
8 8
 
9 9
 class RequestIdController extends Controller
10 10
 {
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * Retrives a SignereID session to get the
29 29
      * information about the authorized user.
30 30
      *
31
-     * @return \Illuminate\Http\Response
31
+     * @return string
32 32
      */
33 33
     public function __invoke(Request $request)
34 34
     {
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/DocumentProviderCertificateController.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * Gets the expires date for your BankID certificate.
29 29
      *
30
-     * @param  Request $request
31
-     * @return \Illuminate\Http\Response
30
+     * @return string
32 31
      */
33 32
     public function __invoke()
34 33
     {
Please login to merge, or discard this patch.
src/Http/Controllers/ExternalLoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * Invalidates a login request.
28 28
      *
29 29
      * @param  Request $request
30
-     * @return \Illuminate\Http\Response
30
+     * @return string
31 31
      * @todo this should be accessible only by the bidder / auth user
32 32
      */
33 33
     public function __invoke(Request $request)
Please login to merge, or discard this patch.