Классы / Методы

<?php

class Greeting {
    static function sayGoodby(string $message = "Goodby!") {
        echo $message, "\n";
    }

    static function sayHello(string $message = "Hello!") {
        echo $message, "\n";
    }
}

Greeting::sayGoodby();
//prints "Goodby!"

Greeting::sayHello("Hi");
//prints "Hi"