| @@ -1,9 +1,8 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | namespace YayMail\Elements; |
| 3 | 3 | |
| 4 | 4 | use YayMail\Abstracts\BaseElement; |
| 5 | -use YayMail\Constants\AttributesData; | |
| 6 | 5 | use YayMail\Utils\SingletonTrait; |
| 7 | 6 | |
| 8 | 7 | /** |
| 9 | 8 | * Column Elements |
| @@ -25,10 +24,9 @@ | ||
| 25 | 24 | 'available' => true, |
| 26 | 25 | 'children' => isset( $attributes['children'] ) ? $attributes['children'] : [], |
| 27 | 26 | |
| 28 | 27 | 'data' => [ |
| 29 | - 'width' => isset( $attributes['width'] ) ? $attributes['width'] : $width, | |
| 30 | - 'border' => isset( $attributes['border'] ) ? $attributes['border'] : AttributesData::BORDER_DEFAULT, | |
| 28 | + 'width' => isset( $attributes['width'] ) ? $attributes['width'] : $width, | |
| 31 | 29 | ], |
| 32 | 30 | ]; |
| 33 | 31 | } |
| 34 | 32 | } |