1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27:
<?php
/**
* TipyOutput
*
* @package tipy
*/
/**
* Action output data
*
* These values will be assigned to {@link TipyView} template on page rendering
*
* <code>
* class MyController extends TipyController {
* public function index() {
* $this->out->set('firstName', 'John');
* // or by shortcut
* $this->out('lastName', 'Doe');
* }
* }
* </code>
*
* @see TipyView
*/
class TipyOutput extends TipyIOWrapper {
}