Test Setup Failed
Push — master ( 210134...c17796 )
by Damian
03:18
created

tests/php/View/ViewableDataTest/CastingClass.php (1 issue)

Severity
1
<?php
2
3
namespace SilverStripe\View\Tests\ViewableDataTest;
4
5
use SilverStripe\Dev\TestOnly;
6
use SilverStripe\View\ViewableData;
7
8
class CastingClass extends ViewableData implements TestOnly
9
{
10
    private static $casting = array(
0 ignored issues
show
The private property $casting is not used, and could be removed.
Loading history...
11
        'Field' => 'CastingType',
12
        'Argument' => 'ArgumentType(Argument)',
13
        'ArrayArgument' => 'ArrayArgumentType(array(foo, bar))'
14
    );
15
}
16