silverstripe-framework/tests/php/Core/ObjectTest/CreateTest.php

18 lines
261 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Core\Tests\ObjectTest;
use SilverStripe\Core\Object;
class CreateTest extends Object
{
public $constructArguments;
public function __construct()
{
$this->constructArguments = func_get_args();
parent::__construct();
}
}