silverstripe-framework/tests/php/View/ArrayDataTest/NonEmptyObject.php
2016-12-19 16:08:19 +13:00

18 lines
267 B
PHP

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