11 lines
200 B
PHP
11 lines
200 B
PHP
<?php
|
|
|
|
class IndexController extends Yaf_Controller_Abstract {
|
|
|
|
/* action method may have arguments */
|
|
function indexAction() {
|
|
echo json_encode(array(
|
|
|
|
));
|
|
}
|
|
} |