silverstripe-framework/tests/php/Core/ObjectTest/T2.php
2017-08-22 15:47:24 +12:00

41 lines
863 B
PHP

<?php
namespace SilverStripe\Core\Tests\ObjectTest;
class T2 extends BaseObject
{
protected $failover;
protected $failoverArr = array();
public function __construct()
{
$this->failover = new T1A();
$this->failoverArr[0] = new T1B();
$this->failoverArr[1] = new T1C();
parent::__construct();
}
public function defineMethods()
{
$this->addWrapperMethod('Wrapping', 'wrappedMethod');
$this->addMethodsFrom('failover');
$this->addMethodsFrom('failoverArr', 0);
$this->addMethodsFrom('failoverArr', 1);
$this->addCallbackMethod('failoverCallback', function ($inst, $args) {
return true;
});
}
public function wrappedMethod($val)
{
return $val;
}
public function normalMethod()
{
return true;
}
}