silverstripe-framework/tests/php/View/ArrayDataTest/NonEmptyObject.php
2022-12-21 14:44:47 +13:00

19 lines
303 B
PHP

<?php
namespace SilverStripe\View\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";
}
}