silverstripe-framework/tests/php/Model/ArrayDataTest/NonEmptyObject.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

19 lines
304 B
PHP

<?php
namespace SilverStripe\Model\Tests\ArrayDataTest;
use SilverStripe\Dev\TestOnly;
class NonEmptyObject implements TestOnly
{
public $a;
public $b;
public static $c = "Cucumber";
public function __construct()
{
$this->a = "Apple";
$this->b = "Banana";
}
}