public
Description: My mirror of phpspec
Homepage: http://www.phpspec.org/
Clone URL: git://github.com/tedkulp/phpspec.git
phpspec / specs / _modules / Default / controllers / PhpspecController.php
100644 13 lines (11 sloc) 0.246 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
 
require_once 'Zend/Controller/Action.php';
 
class PhpspecController extends Zend_Controller_Action
{
    public function pgetController()
    {
        $this->getResponse()->setBody(
            $this->getRequest()->text
        );
    }
}