Skip to content

Commit

Permalink
Update xxhash stub
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Apr 2, 2024
1 parent 02cbf3d commit 9f725b8
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions xxhash/xxhash.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

function xxhash32(string $data): string {}
function xxhash32(string $data) : string{}

function xxhash64(string $data): string {}
function xxhash64(string $data) : string{}

function xxhash3_64bits(string $data) : string{}

function xxhash3_128bits(string $data) : string{}

function xxhash32_int(int $value) : int{}

function xxhash64_int(int $value) : int{}

function xxhash3_64bits_int(int $value) : int{}

0 comments on commit 9f725b8

Please sign in to comment.