silverstripe-framework/tests/php/View/ArrayDataTest/NonEmptyObject.php

18 lines
267 B
PHP
Raw Normal View History

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