Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class RGBAColor_Presets |
||
23 | { |
||
24 | public static function white() : RGBAColor |
||
27 | } |
||
28 | |||
29 | public static function black() : RGBAColor |
||
30 | { |
||
31 | return RGBAColor_Factory::createFromPreset(RGBAColor_PresetsManager::COLOR_BLACK); |
||
32 | } |
||
33 | |||
34 | public static function transparent() : RGBAColor |
||
37 | } |
||
38 | |||
39 | public static function custom(string $presetName) : RGBAColor |
||
42 | } |
||
43 | } |
||
44 |