Skip to content

Commit

Permalink
Update Parser.php (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastiaanKloos authored Aug 26, 2024
1 parent b111b9a commit 95eae91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Parser/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Tmilos\ScimFilterParser\Parser as ScimFilterParserParser;

class Parser {
public static function parse($input): Path {
public static function parse($input): ?Path {
if($input == null){
return null;
}
Expand All @@ -19,7 +19,7 @@ public static function parse($input): Path {
);
}

public static function parseFilter($input): Path {
public static function parseFilter($input): ?Path {
if($input == null){
return null;
}
Expand Down

0 comments on commit 95eae91

Please sign in to comment.