Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<?php interface Logger { // Constants are allowed const DEFAULT_LEVEL = "info"; // Methods must be public, no body public function log(string $level, string $message): void; public function info(string $message): void; public function error(string $message): void; // Properties are NOT allowed in interfaces // public string $prefix; // Fatal error! }
Result
Open