mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
17 lines
284 B
PHP
17 lines
284 B
PHP
<?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();
|
|
}
|
|
}
|