Always specify result type of the function.
function phrase() { // <-- Missing return type
    return 'hi';
}