Skip to content

Commit

Permalink
remove trailing comma
Browse files Browse the repository at this point in the history
Co-Authored-By: Luke <bizurkur@users.noreply.github.com>
  • Loading branch information
mikey179 and bizurkur committed Feb 26, 2020
1 parent c4535b2 commit fe50757
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/internal/Path.php
Expand Up @@ -56,7 +56,7 @@ public static function split(string $path): self

return new Path(
substr($path, 0, $lastSlashPos),
substr($path, $lastSlashPos + 1),
substr($path, $lastSlashPos + 1)
);
}

Expand All @@ -81,4 +81,4 @@ public static function resolve(string $path): string
return implode('/', $newPath);
}

}
}

0 comments on commit fe50757

Please sign in to comment.