Skip to content

Commit 3b920f8

Browse files
committed
fix
1 parent 46b98b3 commit 3b920f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Web/Blog/articles/2025-05-26-tempests-vision.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ And a lot more.
6969

7070
A core part of Tempest's philosophy is that it wants to "get out of your way" as best as possible. For starters, Tempest is designed to structure project code however you want, without making any assumptions or forcing conventions on you. You can prefer a classic MVC application, DDD or hexagonal design, microservices, or something else; Tempest works with any project structure out of the box without any configuration.
7171

72-
Behind Tempest's flexibility is one of its most powerful features: [discovery](../internals/discovery). Discovery gives Tempest a great number of insights into your codebase, without any handholding. Discovery handles routing, console commands, view components, event listeners, command handlers, middleware, schedules, migrations, and more.
72+
Behind Tempest's flexibility is one of its most powerful features: [discovery](/main/internals/discovery). Discovery gives Tempest a great number of insights into your codebase, without any handholding. Discovery handles routing, console commands, view components, event listeners, command handlers, middleware, schedules, migrations, and more.
7373

7474
```php
7575
final class ConsoleCommandDiscovery implements Discovery
@@ -110,7 +110,7 @@ $container->singleton(ViewRenderer::class, $myCustomViewRenderer);
110110

111111
## Thinking outside the box
112112

113-
Finally, since Tempest originated as an educational project, many Tempest features dare to rethink the things we've gotten used to. For example, [console commands](../1-essentials/04-console-commands), which in Tempest are designed to be very similar to controller actions:
113+
Finally, since Tempest originated as an educational project, many Tempest features dare to rethink the things we've gotten used to. For example, [console commands](/main/1-essentials/04-console-commands), which in Tempest are designed to be very similar to controller actions:
114114

115115
```php
116116
final readonly class BooksCommand
@@ -136,7 +136,7 @@ final readonly class BooksCommand
136136
}
137137
```
138138

139-
Or what about [Tempest's ORM](../1-essentials/03-database), which aims to have truly decoupled models:
139+
Or what about [Tempest's ORM](/main/1-essentials/03-database), which aims to have truly decoupled models:
140140

141141
```php
142142
use Tempest\Validation\Rules\Length;

0 commit comments

Comments
 (0)