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

19 lines
303 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
{
2022-12-21 02:44:47 +01:00
public $a;
public $b;
public 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
}