mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e2e32317d6
Also rename ViewableData to ModelData ahead of the template layer lift-and-shift
19 lines
304 B
PHP
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";
|
|
}
|
|
}
|