aboutsummaryrefslogtreecommitdiffhomepage
path: root/phpstan.neon
blob: fd3341e42e0ffbd39856c9fec80738f91401b1ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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/hello-world
        - examples/php-on-wasm
    typeAliases:
        Byte: 'int'
        U32: 'int'
        U64: 'int'
        S32: 'int'
        S33: 'int'
        S64: 'int'
        F32: 'float'
        F64: 'float'
        Name: 'string'