Skip to content

Commit 95eae91

Browse files
Update Parser.php (limosa-io#84)
1 parent b111b9a commit 95eae91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Parser/Parser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Tmilos\ScimFilterParser\Parser as ScimFilterParserParser;
77

88
class Parser {
9-
public static function parse($input): Path {
9+
public static function parse($input): ?Path {
1010
if($input == null){
1111
return null;
1212
}
@@ -19,7 +19,7 @@ public static function parse($input): Path {
1919
);
2020
}
2121

22-
public static function parseFilter($input): Path {
22+
public static function parseFilter($input): ?Path {
2323
if($input == null){
2424
return null;
2525
}

0 commit comments

Comments
 (0)