9 lines
204 B
PHP
Executable File
9 lines
204 B
PHP
Executable File
<?php
|
|
class AppController extends Controller {
|
|
var $components = array('RequestHandler');
|
|
|
|
function beforeFilter() {
|
|
$this->RequestHandler->setContent('json', 'application/json');
|
|
}
|
|
}
|
|
?>
|