Travis: Enforce phpcs line length + whitespace (#3488)

* Update Travis line length

* Also check whitespace in CSS files

* Fix line length ext.php

* More syntax, string templates

* Fix exclude-pattern

* Test JS files as well
This commit is contained in:
Alexandre Alapetite
2021-02-28 12:26:24 +01:00
committed by GitHub
parent bf2718cada
commit 947e918f05
85 changed files with 5574 additions and 5374 deletions

View File

@@ -59,12 +59,12 @@ class FreshRSS_UserQuery {
*/
public function toArray() {
return array_filter(array(
'get' => $this->get,
'name' => $this->name,
'order' => $this->order,
'search' => $this->search->__toString(),
'state' => $this->state,
'url' => $this->url,
'get' => $this->get,
'name' => $this->name,
'order' => $this->order,
'search' => $this->search->__toString(),
'state' => $this->state,
'url' => $this->url,
));
}