Format code using php-cs-fixer
This commit is contained in:
parent
43d7dc92cd
commit
d52c6184b9
352 changed files with 17473 additions and 17041 deletions
|
@ -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
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue