Skip to content

Commit 01708e5

Browse files
committed
Update 1.perimeters.md
1 parent fed576d commit 01708e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/2.essentials/1.perimeters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ description: Structure your applications access scopes.
88
Create your perimeter using the command:
99

1010
```bash
11-
php artisan make:perimeter PostPerimeter
11+
php artisan make:perimeter GlobalPerimeter
1212
```
1313

1414
```php
1515
use Lomkit\Access\Perimeters\Perimeter;
1616

17-
class PostPerimeter extends Perimeter
17+
class GlobalPerimeter extends Perimeter
1818
{
1919
//
2020
}
2121
```
2222

23-
You don't need to define much more, this is more functional related.
23+
You don't need to define much more in the perimeter, this is more functional related.
2424

2525
## Overlay Perimeter
2626

0 commit comments

Comments
 (0)