Is proper indentation important in PHP coding practices?

Proper indentation is crucial in PHP coding practices as it improves code readability and maintainability. It helps developers easily identify code blocks, nested structures, and logical flow. Consistent indentation also makes debugging and collaborating on code easier.

<?php

// Incorrect indentation
if ($condition) {
echo "Condition is true";
}

// Correct indentation
if ($condition) {
    echo "Condition is true";
}

?>