PHP - Classes and Objects
Given the class below, which code correctly prints the constant
STATUS without creating an object?class Server {
const STATUS = 'Online';
}