Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/TNEFDecoder/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function tnef_getx($size, TNEFBuffer $buf)
* TNEF decoding helper function
*
*/
function tnef_geti8(TNEFBuffer $buf): int
function tnef_geti8(TNEFBuffer $buf)
{
$bytes = $buf->getBytes(1, $buf);
if ($bytes === null) {
Expand All @@ -93,7 +93,7 @@ function tnef_geti8(TNEFBuffer $buf): int
* TNEF decoding helper function
*
*/
function tnef_geti16(TNEFBuffer $buf): int
function tnef_geti16(TNEFBuffer $buf)
{
$bytes = $buf->getBytes(2, $buf);
if ($bytes === null) {
Expand All @@ -110,7 +110,7 @@ function tnef_geti16(TNEFBuffer $buf): int
* TNEF decoding helper function
*
*/
function tnef_geti32(TNEFBuffer $buf): int
function tnef_geti32(TNEFBuffer $buf)
{
$bytes = $buf->getBytes(4, $buf);
if ($bytes === null) {
Expand Down