Giuseppe Mazzapica
Giuseppe Mazzapica
@19peaches yes, `"foil/foil": "~0.6"` is fine. Thanks to your comment I just discovered an issue with Packagist, that did not updated the source when I moved Foil to an organization....
@19peaches off course, was a typo.
@thinsoldier the data that was passed to `render` can be obtained using `$this->data()` inside templates. Point is that I didn't want to use `extract` and still I don't want to...
@thinsoldier > Is there a specific advantage of using the alias feature over using $foil = $this; manually? If you do that, you have to do that in all the...
@thinsoldier Since version 0.3 there's the option `strict_variables` that allow to throw notices when undefined variabled are used or alternatively to throw exceptions. So you have more control ;) See...
Not against it. It could appear easier than it is because `render()` is used also for partials and just echo by default when an engine setting is there will cause...
An helper method sounds ok. For BC I want to leave `render()` as the function that _returns_ the string. `write()` seems ok for the method that _echo_ the result. What...
@matthew-dean I took this a bit further... I noticed that some people is already using Foil as a file builder (and they are happy `render()` does not echo result ;))....
@brad-jones I actually have something like this in a separate extension never pushed because quick&dirty :) I can only suggest to work it a separate extension as well... it would...
Thank you @jrfnl for the excellent work on this and the ping. As per the change, this will affect us on the _tests_ for the custom sniffs, so it will...