Skip to content

Instantly share code, notes, and snippets.

<?php
interface Info
{
public function channelMessage();
}
abstract class Live
{
const RANGE = 10;
protected $point = 0;
<?php
class Debug
{
public function getTest($x)
{
if ( !is_numeric($x) ) {
throw new Exception('This not number');
}
return $x;