Skip to Content.
Sympa Menu

devel - Re: [sympa-developpers] Plans for Sympa

Subject: Developers of Sympa

List archive

Chronological Thread  
  • From: Marc Chantreux <address@concealed>
  • To: Guillaume Rousse <address@concealed>
  • Cc: address@concealed
  • Subject: Re: [sympa-developpers] Plans for Sympa
  • Date: Mon, 18 Mar 2013 10:42:47 +0100

hello,

On Mon, Mar 18, 2013 at 09:57:48AM +0100, Guillaume Rousse wrote:
> into an additional useless indentation step:
> $foo->bar(
> {
> param1 => value1,
> param2 => value2
> }
> );

which is close than what i would write. I just use the operator line
continuation
which gives:

$foo->bar(
{ param1 => value1
, param2 => value2 }
);

regards



Archive powered by MHonArc 2.6.19+.

Top of Page