|
Welcome Friends!
I have finally put up a personal/professional website. I am not sure what will
end up here yet. The two big things I will be adding are blogs and code examples.
As Zend Framework 2.0 comes out, I will be sharing the changes as I find them
and giving code examples that help transition. I will also try to blog at least once
per week.
Please look around and give me feedback. Thanks for taking a look. Below, I have
been playing with some CSS to show code formatted nicely. Right now, I am doing
a VIM look - but, my CSS will do both VIM and a traditional editor view by the time
I am done.
/**
* Sample class to look at my css for code
*
* @author Tommy Smith
*/
class TestClass
{
/**
* Constructor
*
* @params $var
* @return void
*/
public function __construct($var = null)
{
$this->view->count = $var;
}
}
|