18 lines
267 B
PHP
Raw Normal View History

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