Visual Console Refactor: bugfix
Former-commit-id: e6bff1d0458ca878cf31661bfcb77d833f5b8093
This commit is contained in:
parent
2d9b4908de
commit
08f9a34f23
|
@ -68,20 +68,20 @@ final class ModuleGraph extends Item
|
||||||
*
|
*
|
||||||
* @param array $data Unknown input data structure.
|
* @param array $data Unknown input data structure.
|
||||||
*
|
*
|
||||||
* @return string 'none', 'white' or 'black'. 'none' by default.
|
* @return string 'transparent', 'white' or 'black'. 'transparent' by default.
|
||||||
*/
|
*/
|
||||||
private static function extractBackgroundType(array $data): string
|
private static function extractBackgroundType(array $data): string
|
||||||
{
|
{
|
||||||
$value = static::issetInArray($data, ['backgroundType', 'image']);
|
$value = static::issetInArray($data, ['backgroundType', 'image']);
|
||||||
|
|
||||||
switch ($value) {
|
switch ($value) {
|
||||||
case 'none':
|
case 'transparent':
|
||||||
case 'white':
|
case 'white':
|
||||||
case 'black':
|
case 'black':
|
||||||
return $value;
|
return $value;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return 'none';
|
return 'transparent';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue