silverstripe-framework/tests/php/Core/Config/ConfigTest/TestNest.php

16 lines
219 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\Core\Tests\Config\ConfigTest;
class TestNest extends BaseObject
{
/**
* @config
*/
private static $foo = 3;
/**
* @config
*/
private static $bar = 5;
}