1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-19 03:54:42 +01:00

Fix doc example syntax

This commit is contained in:
Matt Brown 2018-05-24 14:33:41 -04:00
parent e2153db3dc
commit 2d6eab85fa

View File

@ -254,8 +254,8 @@ If the values are in class constants, you can use those too:
```php
class A {
const FOO;
const BAR;
const FOO = 'foo';
const BAR = 'bar';
}
/**