Code Duplication    Length = 2-2 lines in 2 locations

src/Columns/AttributeColumn.php 2 locations

@@ 52-53 (lines=2) @@
49
            case 'text':
50
                return htmlentities($value);
51
52
            case 'url':
53
                return '<a href="' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>';
54
55
            case 'email':
56
                return '<a href="mailto:' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>';
@@ 55-56 (lines=2) @@
52
            case 'url':
53
                return '<a href="' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>';
54
55
            case 'email':
56
                return '<a href="mailto:' . htmlspecialchars($value, ENT_QUOTES) . '">' . htmlentities($value) . '</a>';
57
                
58
            case 'image':
59
                return '<img src="' . htmlspecialchars($value, ENT_QUOTES) . '">';