for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sketch\Tpl\Tag;
class Func extends Tag
{
public function __construct()
$search = "/{(\s?)+([\w]+)(\s?)+\((.*?)\)(\s?)+}/is";
Tag::match($search, function($func, $params) {
Tag::replace("<?php $func($params) ?>");
});
}