Изменения в новых версиях / PHP 7.1

// *** before: ***
function logMessage($message) {
    // the return type is only a comment, nothing enforces it
    echo $message, PHP_EOL;
}

// *** in version 7.1: ***
function logMessage(string $message): void {
    echo $message, PHP_EOL;
    // return $message; // Fatal error: a void function must not return a value
}