Format code using php-cs-fixer

This commit is contained in:
jo 2021-10-11 16:10:47 +02:00
parent 43d7dc92cd
commit d52c6184b9
352 changed files with 17473 additions and 17041 deletions

View file

@ -1,8 +1,9 @@
<?php
class RenderController extends Zend_Controller_Action {
public function init() {
class RenderController extends Zend_Controller_Action
{
public function init()
{
$this->view->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
@ -12,9 +13,9 @@ class RenderController extends Zend_Controller_Action {
$this->view->csrf = $csrf_element;
}
public function podcastUrlDialogAction() {
public function podcastUrlDialogAction()
{
$path = 'podcast/podcast_url_dialog.phtml';
$this->_helper->json->sendJson(array("html"=>$this->view->render($path)));
$this->_helper->json->sendJson(['html' => $this->view->render($path)]);
}
}
}