We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ede7d7 commit 02c69acCopy full SHA for 02c69ac
docs/technical/architecture/index.md
@@ -3,6 +3,7 @@ layout: default
3
title: Software Architecture
4
nav_order: 3
5
has_children: true
6
+parent: Technical Documentation
7
permalink: /docs/technical/architecture
8
---
9
docs/technical/local-development.md
@@ -73,3 +73,19 @@ composer run pint-test
73
# Test the code style of the changes you made
74
composer run pint-test-dirty
75
```
76
+
77
+## Static code analyses (PHPStan)
78
79
+We've implemented Larastan (PHPStan) to analyse our code statically. It will search for type errors in the codebase.
80
81
+To run the static code analyses locally, you can run:
82
83
+```shell
84
+composer run analyse
85
+```
86
87
+To generate a new baseline, you can run:
88
89
90
+composer run analyse-baseline
91
0 commit comments