Skip to content

Commit

Permalink
SDK-2265 removed unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmet-yoti committed May 7, 2024
1 parent 1ae7f28 commit 41546f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions examples/profile/app/Http/Controllers/IdentityController.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function show(DigitalIdentityClient $client)
'createdQrCodeUri' => $createdQrCode->getUri(),
// Fetch QR code
'fetchedQrCodeExpiry' => $fetchedQrCode->getExpiry(),
'fetchedQrCodeExtensions' => $fetchedQrCode->getExtensions(),

'fetchedQrCodeRedirectUri' => $fetchedQrCode->getRedirectUri(),
'fetchedQrCodeSessionId' => $fetchedQrCode->getSession()->getId(),
'fetchedQrCodeSessionStatus' => $fetchedQrCode->getSession()->getStatus(),
Expand All @@ -54,8 +54,7 @@ public function show(DigitalIdentityClient $client)
'fetchedSessionExpiry' => $sessionFetched->getExpiry(),
'fetchedSessionCreated' => $sessionFetched->getCreated(),
'fetchedSessionUpdated' => $sessionFetched->getUpdated(),
'fetchedSessionQrCodeId' => $sessionFetched->getQrCodeId(),
'fetchedSessionReceiptId' => $sessionFetched->getReceiptId(),

]);
} catch (\Throwable $e) {
Log::error($e->getTraceAsString());
Expand Down
4 changes: 1 addition & 3 deletions examples/profile/resources/views/identity.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
<div>
<p><strong>Fetched Session QR Code</strong></p>
<p> Expiry: {{$fetchedQrCodeExpiry}}</p>
<p> Extensions: {{$fetchedQrCodeExtensions}}</p>
<p> Redirect URI: {{$fetchedQrCodeRedirectUri}}</p>
<p> Session ID: {{$fetchedQrCodeSessionId}}</p>
<p> Session Status: {{$fetchedQrCodeSessionStatus}}</p>
Expand All @@ -51,8 +50,7 @@
<p> Updated: {{$fetchedSessionUpdated}}</p>
<p> Expiry: {{$fetchedSessionExpiry}}</p>
<p> Status: {{$fetchedSessionStatus}}</p>
<p> QR Code ID: {{$fetchedSessionQrCodeId}}</p>
<p> Receipt ID: {{$fetchedSessionReceiptId}}</p>

</div>

</section>
Expand Down

0 comments on commit 41546f1

Please sign in to comment.