[phpcs] Add missing rules

- Do not add spaces after opening or before closing parenthesis

  // Wrong
  if( !is_null($var) ) {
    ...
  }

  // Right
  if(!is_null($var)) {
    ...
  }

- Add space after closing parenthesis

  // Wrong
  if(true){
    ...
  }

  // Right
  if(true) {
    ...
  }

- Add body into new line
- Close body in new line

  // Wrong
  if(true) { ... }

  // Right
  if(true) {
    ...
  }

Notice: Spaces after keywords are not detected:

  // Wrong (not detected)
  // -> space after 'if' and missing space after 'else'
  if (true) {
    ...
  } else{
    ...
  }

  // Right
  if(true) {
    ...
  } else {
    ...
  }
This commit is contained in:
logmanoriginal 2017-07-29 19:28:00 +02:00
parent 38b56bf23a
commit a4b9611e66
128 changed files with 692 additions and 694 deletions

View file

@ -35,7 +35,7 @@ class DailymotionBridge extends BridgeAbstract {
protected function getMetadata($id){
$metadata = array();
$html2 = getSimpleHTMLDOM(self::URI . 'video/' . $id);
if(!$html2){
if(!$html2) {
return $metadata;
}
@ -56,12 +56,12 @@ class DailymotionBridge extends BridgeAbstract {
$html = getSimpleHTMLDOM($this->getURI())
or returnServerError('Could not request Dailymotion.');
foreach($html->find('div.media a.preview_link') as $element){
if($count < $limit){
foreach($html->find('div.media a.preview_link') as $element) {
if($count < $limit) {
$item = array();
$item['id'] = str_replace('/video/', '', strtok($element->href, '_'));
$metadata = $this->getMetadata($item['id']);
if(empty($metadata)){
if(empty($metadata)) {
continue;
}
$item['uri'] = $metadata['uri'];
@ -85,7 +85,7 @@ class DailymotionBridge extends BridgeAbstract {
}
public function getName(){
switch($this->queriedContext){
switch($this->queriedContext) {
case 'By username':
$specific = $this->getInput('u');
break;
@ -103,7 +103,7 @@ class DailymotionBridge extends BridgeAbstract {
public function getURI(){
$uri = self::URI;
switch($this->queriedContext){
switch($this->queriedContext) {
case 'By username':
$uri .= 'user/' . urlencode($this->getInput('u')) . '/1';
break;
@ -112,7 +112,7 @@ class DailymotionBridge extends BridgeAbstract {
break;
case 'From search results':
$uri .= 'search/' . urlencode($this->getInput('s'));
if($this->getInput('pa')){
if($this->getInput('pa')) {
$uri .= '/' . $this->getInput('pa');
}
break;