From 9bf62afd85ae5b79909d45c5cb279ea5b69a2d54 Mon Sep 17 00:00:00 2001 From: tellthemachines Date: Tue, 26 Oct 2021 17:05:06 +1100 Subject: [PATCH] Fix php lint warnings. --- lib/block-supports/layout.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/block-supports/layout.php b/lib/block-supports/layout.php index a06ebee127bfae..4b3195c7dddb3c 100644 --- a/lib/block-supports/layout.php +++ b/lib/block-supports/layout.php @@ -72,9 +72,9 @@ function gutenberg_get_layout_style( $selector, $layout, $has_block_gap_support $layout_orientation = isset( $layout['orientation'] ) ? $layout['orientation'] : 'horizontal'; $justify_content_options = array( - 'left' => 'flex-start', - 'right' => 'flex-end', - 'center' => 'center', + 'left' => 'flex-start', + 'right' => 'flex-end', + 'center' => 'center', ); if ( 'horizontal' === $layout_orientation ) {