23 lines
453 B
PHP
Raw Normal View History

2016-10-14 14:30:05 +13:00
<?php
namespace SilverStripe\Core\Tests\ObjectTest;
use SilverStripe\Core\Extension;
use SilverStripe\Dev\TestOnly;
2016-10-14 14:30:05 +13:00
class ExtendTest3 extends Extension implements TestOnly
2016-10-14 14:30:05 +13:00
{
protected $constructorArgs = [];
public function __construct()
{
2017-06-23 15:13:55 +12:00
parent::__construct();
$this->constructorArgs = func_get_args();
}
public function extendableMethod($argument = null)
{
return "ExtendTest3($argument)";
}
2016-10-14 14:30:05 +13:00
}