your best bet would be to define it in a constant like PHP_EOL one then in the xml, you can use <parameter key="asd" type="constant">PHP_EOL</parameter> alternatively, if you prefer that to be a class constant, you could specify it in xml like <parameter key="asd" type="constant">My\Fully\Qualified\Class\Name::PHP_EOL</parameter> As for the float, you could simply cast it in the user code - (float) 3 => 3.0
On Fri, Jun 3, 2011 at 10:17 AM, Oleg Stepura <[email protected]>wrote: > >Try using <![CDATA[\r\n]]> > > Nope, doesn't work! =( > > -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfony-project.com > > You received this message because you are subscribed to the Google > Groups "symfony developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/symfony-devs?hl=en > -- *Bulat Shakirzyanov* | Software Alchemist *a: *about.me/avalanche123 *e:* [email protected] -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en
