There are a few formats that seem to be gaining popularity. See the following examples: ``` php // Inline array. $foo = bar($arg1, array( 'one', 'two', 'three', ), $arg3); // Inline closure. $container->share('database', function(Container $c) { // Return a database driver. }, true); ``` How do people feel about those cases?