Skip to content

Commit 827dd01

Browse files
committed
Fixed typos.
Signed-off-by: Exadra37 <exadra37@gmail.com>
1 parent 4bab542 commit 827dd01

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The quickstart was tested with the following Operating Systems:
1515
* MacOS Big Sur
1616
* Windows 10 WSL2 - Ubuntu 20.04
1717

18-
First, setup the [Appoov CLI](https://approov.io/docs/latest/approov-installation/index.html#initializing-the-approov-cli).
18+
First, setup the [Approov CLI](https://approov.io/docs/latest/approov-installation/index.html#initializing-the-approov-cli).
1919

2020
Now, register the API domain for which Approov will issues tokens:
2121

@@ -29,7 +29,7 @@ Next, enable your Approov `admin` role with:
2929
eval `approov role admin`
3030
```
3131

32-
Now, get your Approov Secret with the [Appoov CLI](https://approov.io/docs/latest/approov-installation/index.html#initializing-the-approov-cli):
32+
Now, get your Approov Secret with the [Approov CLI](https://approov.io/docs/latest/approov-installation/index.html#initializing-the-approov-cli):
3333

3434
```bash
3535
approov secret -get base64
@@ -113,7 +113,7 @@ class Approov
113113

114114
if (empty($approov_secret)) {
115115
// You may want to add some logging here
116-
//\Log::debug("MISSIG APPROOV SECRET");
116+
//\Log::debug("MISSING APPROOV SECRET");
117117
return null;
118118
}
119119

docs/APPROOV_TOKEN_BINDING_QUICKSTART.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ class Approov
164164

165165
if (empty($approov_secret)) {
166166
// You may want to add some logging here
167-
// \Log::debug("MISSIG APPROOV SECRET");
167+
// \Log::debug("MISSING APPROOV SECRET");
168168
return null;
169169
}
170170

@@ -211,7 +211,7 @@ class Approov
211211
private function verifyApproovTokenBinding(HeaderBag $headers, \stdClass $approov_token_claims): bool {
212212
if (empty($approov_token_claims->pay)) {
213213
// You may want to add some logging here
214-
// \Log::debug("MISSIG APPROOV TOKEN BINDING CLAIM");
214+
// \Log::debug("MISSING APPROOV TOKEN BINDING CLAIM");
215215
return false;
216216
}
217217

@@ -222,7 +222,7 @@ class Approov
222222

223223
if (empty($token_binding_header)) {
224224
// You may want to add some logging here
225-
// \Log::debug("MISSIG APPROOV TOKEN BINDING HEADER");
225+
// \Log::debug("MISSING APPROOV TOKEN BINDING HEADER");
226226
return false;
227227
}
228228

docs/APPROOV_TOKEN_QUICKSTART.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class Approov
159159

160160
if (empty($approov_secret)) {
161161
// You may want to add some logging here
162-
//\Log::debug("MISSIG APPROOV SECRET");
162+
//\Log::debug("MISSING APPROOV SECRET");
163163
return null;
164164
}
165165

src/approov-protected-server/token-binding-check/hello/app/Http/Middleware/Approov.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private function verifyApproovToken(HeaderBag $headers): ?\stdClass {
5252

5353
if (empty($approov_secret)) {
5454
// You may want to add some logging here
55-
// \Log::debug("MISSIG APPROOV SECRET");
55+
// \Log::debug("MISSING APPROOV SECRET");
5656
return null;
5757
}
5858

@@ -99,7 +99,7 @@ private function verifyApproovToken(HeaderBag $headers): ?\stdClass {
9999
private function verifyApproovTokenBinding(HeaderBag $headers, \stdClass $approov_token_claims): bool {
100100
if (empty($approov_token_claims->pay)) {
101101
// You may want to add some logging here
102-
// \Log::debug("MISSIG APPROOV TOKEN BINDING CLAIM");
102+
// \Log::debug("MISSING APPROOV TOKEN BINDING CLAIM");
103103
return false;
104104
}
105105

@@ -110,7 +110,7 @@ private function verifyApproovTokenBinding(HeaderBag $headers, \stdClass $approo
110110

111111
if (empty($token_binding_header)) {
112112
// You may want to add some logging here
113-
// \Log::debug("MISSIG APPROOV TOKEN BINDING HEADER");
113+
// \Log::debug("MISSING APPROOV TOKEN BINDING HEADER");
114114
return false;
115115
}
116116

src/approov-protected-server/token-check/hello/app/Http/Middleware/Approov.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private function verifyApproovToken(HeaderBag $headers): ?\stdClass {
4848

4949
if (empty($approov_secret)) {
5050
// You may want to add some logging here
51-
// \Log::debug("MISSIG APPROOV SECRET");
51+
// \Log::debug("MISSING APPROOV SECRET");
5252
return null;
5353
}
5454

0 commit comments

Comments
 (0)