- move auto loader to lib/ folder (so it doesn't exist in document root) - Fix a lot of old method names in DB\IO and Form\General, etc - Fix login with non existing DB set (abort -> exit) - add getDbEncoding call to DB\IO
24 lines
250 B
PHP
Executable File
24 lines
250 B
PHP
Executable File
<?php
|
|
|
|
namespace Foo;
|
|
|
|
class FooBar
|
|
{
|
|
public $foo = '';
|
|
|
|
public function __construct()
|
|
{
|
|
$this->foo = 'BAR';
|
|
}
|
|
|
|
public function otherBarBar($wrong)
|
|
{
|
|
echo "B: $wrong<br>";
|
|
}
|
|
|
|
public function barBar($wrong)
|
|
{
|
|
echo "B: $wrong<br>";
|
|
}
|
|
}
|