Indentation¶
Indentation is a convention governing the indentation of blocks of code to convey program structure.
<?php
function headers() : never {
// expected indentation
headers('Location: https://www.exakat.io/');
// badly indented block
die();
}
?>