ImageDataExtension
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 3
dl 0
loc 8
c 1
b 0
f 0
1
<?php
2
3
namespace Dynamic\Salsify\ORM;
4
5
use SilverStripe\Assets\Image;
6
use SilverStripe\ORM\DataExtension;
7
8
/**
9
 * Class ImageDataExtension
10
 * @package Dynamic\Salsify\ORM
11
 *
12
 * @property string Transformation
13
 *
14
 * @property-read ImageDataExtension|Image
15
 */
16
class ImageDataExtension extends DataExtension
17
{
18
19
    /**
20
     * @var array
21
     */
22
    private static $db = [
0 ignored issues
show
introduced by
The private property $db is not used, and could be removed.
Loading history...
23
        'Transformation' => 'Text',
24
    ];
25
}
26