-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpsalm-baseline.xml
32 lines (32 loc) · 1.05 KB
/
psalm-baseline.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<files psalm-version="6.3.0@222dda8483516044c2ed7a4c3f197d7c9d6c3ddb">
<file src="src/NameMapper/CamelCaseToSnakeCaseMapper.php">
<InvalidNullableReturnType>
<code><![CDATA[string]]></code>
</InvalidNullableReturnType>
<NullableReturnStatement>
<code><![CDATA[preg_replace_callback(
'/[A-Z]/',
fn (array $matches) => '_' . strtolower($matches[0]),
$name,
)]]></code>
</NullableReturnStatement>
</file>
<file src="src/NameMapper/SnakeCaseToCamelCaseMapper.php">
<InvalidNullableReturnType>
<code><![CDATA[string]]></code>
</InvalidNullableReturnType>
<NullableReturnStatement>
<code><![CDATA[preg_replace_callback(
'/_([a-z])/',
fn (array $matches) => strtoupper($matches[1]),
$name,
)]]></code>
</NullableReturnStatement>
</file>
<file src="src/Reflection/Reflector.php">
<PossiblyNullArgument>
<code><![CDATA[$type]]></code>
</PossiblyNullArgument>
</file>
</files>