aboutsummaryrefslogtreecommitdiffhomepage
path: root/phpstan.neon
blob: 3162df06f84c3c4c8a71c5356d5cd93ab0cf56b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
includes:
    - phar://phpstan.phar/conf/bleedingEdge.neon
    - vendor/phpstan/phpstan-deprecation-rules/rules.neon
    - vendor/phpstan/phpstan-strict-rules/rules.neon

parameters:
    level: max
    tipsOfTheDay: false
    paths:
        - src
        - examples
    typeAliases:
        Byte: 'int'
        U32: 'int'
        U64: 'int'
        S32: 'int'
        S33: 'int'
        S64: 'int'
        F32: 'float'
        F64: 'float'
        Name: 'string'