c9-core/plugins/c9.fs/mock/test.php

20 wiersze
216 B
PHP
Czysty Zwykły widok Historia

2016-02-24 15:35:47 +00:00
<?php
class Foo {
const c = 'CONSTANT';
public function __construct() {
$self->x = 1;
$self->y = 2;
}
public static function members() {
return array('x', 'y');
}
}
$foo = new Foo;
$foo
?>