Skip to content
This repository has been archived by the owner on Aug 13, 2020. It is now read-only.

Commit

Permalink
quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
josephspurrier committed May 3, 2014
1 parent f3a13e1 commit 66b31e7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/SurfStack/Templating/plugin/Bold.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

namespace SurfStack\Templating\Plugin;
use SurfStack\Templating\Core\Block;

class Bold extends Block
{
function render($strContent)
{
return '<strong>'.$strContent.'</strong> '.$this->arrPluginVariables['name'];
}
}

0 comments on commit 66b31e7

Please sign in to comment.