I have the following function that fails parsing because of the `()` call at the end: ```php $container = $container ?: ( function() { // logic here } )(); ``` IIFE are supported as of PHP 7.0 and up.