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,10 +1,10 @@
<?php
/**
* Class ThirdPartyController abstract superclass for third-party service authorization
* Class ThirdPartyController abstract superclass for third-party service authorization.
*/
abstract class ThirdPartyController extends Zend_Controller_Action {
abstract class ThirdPartyController extends Zend_Controller_Action
{
/**
* @var string base url and port for redirection
*/
@ -16,15 +16,13 @@ abstract class ThirdPartyController extends Zend_Controller_Action {
protected $_service;
/**
* Disable controller rendering and initialize
*
* @return void
* Disable controller rendering and initialize.
*/
public function init() {
public function init()
{
$this->_baseUrl = Application_Common_HTTPHelper::getStationUrl();
$this->view->layout()->disableLayout(); // Don't inject the standard Now Playing header.
$this->_helper->viewRenderer->setNoRender(true); // Don't use (phtml) templates
}
}
}