I was reading the Unyson WP framework, they put some codes inside {} without any conditional statement!
https://github.com/ThemeFuse/Unyson/blob/master/framework/bootstrap.php
include $fw_dir .'/bootstrap-helpers.php';
/**
* Load core
*/
{
require $fw_dir .'/core/Fw.php';
fw();
}
I checked the PHP docs and I didn't find anything about this! I think it's for lifetime management (memory management) but I'm not sure! Any help will be appreciated!