Coding style

Remove spaces before parenthesis.

See https://github.com/marienfressinaud/FreshRSS/issues/655
This commit is contained in:
Marien Fressinaud
2014-10-05 18:24:28 +02:00
parent 3831961b2e
commit 9a0d01be0c
6 changed files with 270 additions and 259 deletions

View File

@@ -1,11 +1,11 @@
<?php
class FreshRSS_javascript_Controller extends Minz_ActionController {
public function firstAction () {
$this->view->_useLayout (false);
public function firstAction() {
$this->view->_useLayout(false);
}
public function actualizeAction () {
public function actualizeAction() {
header('Content-Type: text/javascript; charset=UTF-8');
$feedDAO = FreshRSS_Factory::createFeedDao();
$this->view->feeds = $feedDAO->listFeedsOrderUpdate($this->view->conf->ttl_default);