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

15 lines
258 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\Core\Tests\ObjectTest;
2024-09-18 03:53:44 +02:00
class CreateTest1 extends BaseObject
2016-10-14 03:30:05 +02:00
{
public $constructArguments;
2016-10-14 03:30:05 +02:00
public function __construct()
{
$this->constructArguments = func_get_args();
parent::__construct();
}
2016-10-14 03:30:05 +02:00
}