silverstripe-framework/tests/php/Model/List/ArrayListTest/TestObject.php
Guy Sartorelli e2e32317d6
API Move various classes to more appropriate namespaces (#11370)
Also rename ViewableData to ModelData ahead of the template layer
lift-and-shift
2024-09-23 14:31:50 +12:00

22 lines
360 B
PHP

<?php
namespace SilverStripe\Model\Tests\List\ArrayListTest;
class TestObject
{
public $First;
public $Second;
public function __construct($first, $second)
{
$this->First = $first;
$this->Second = $second;
}
public function toMap()
{
return ['First' => $this->First, 'Second' => $this->Second];
}
}