mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
16 lines
382 B
PHP
16 lines
382 B
PHP
<?php
|
|
|
|
namespace SilverStripe\View\Tests\ViewableDataTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\View\ViewableData;
|
|
|
|
class CastingClass extends ViewableData implements TestOnly
|
|
{
|
|
private static $casting = array(
|
|
'Field' => 'CastingType',
|
|
'Argument' => 'ArgumentType(Argument)',
|
|
'ArrayArgument' => 'ArrayArgumentType(array(foo, bar))'
|
|
);
|
|
}
|