94d2fc1815
* Added nxhtml, mostly for django support. * Changed some org settings.
23 lines
No EOL
224 B
PHP
23 lines
No EOL
224 B
PHP
<?
|
|
|
|
class Baz
|
|
{
|
|
// This class was written after the file was opened
|
|
}
|
|
|
|
class Bar
|
|
{
|
|
public function foo()
|
|
{
|
|
var_dump("foo");
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class Foo
|
|
{
|
|
public function bar()
|
|
{
|
|
var_dump("bar");
|
|
}
|
|
} |