mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
18 lines
267 B
PHP
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";
|
|
}
|
|
}
|