Skip to content

Instantly share code, notes, and snippets.

@JerryBels
JerryBels / anonyClass.php
Last active January 25, 2022 13:51
Anonymous class generation and usage (from PHP 7)
<?php
interface it {
public function tf();
}
trait t {
public $tv = "tv";
public function tf() {
return "tf";