[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

@ -49,23 +49,22 @@ class KATBridge extends BridgeAbstract {
return $timestamp;
}
$catBool = $this->getInput('cat_check');
if($catBool){
if($catBool) {
$catNum = $this->getInput('cat');
}
$critList = $this->getInput('crit');
$trustedBool = $this->getInput('trusted');
$keywordsList = explode(';', $this->getInput('q'));
foreach($keywordsList as $keywords){
switch($critList){
foreach($keywordsList as $keywords) {
switch($critList) {
case 'search':
if($catBool == false){
if($catBool == false) {
$html = getSimpleHTMLDOM(
self::URI .
'torrents-search.php?search=' .
rawurlencode($keywords)
) or returnServerError('Could not request KAT.');
}
else {
} else {
$html = getSimpleHTMLDOM(
self::URI .
'torrents-search.php?search=' .
@ -92,10 +91,10 @@ class KATBridge extends BridgeAbstract {
}
if ($html->find('table.ttable_headinner', 0) == false)
returnServerError('No result for query ' . $keywords);
foreach($html->find('tr.t-row') as $element){
foreach($html->find('tr.t-row') as $element) {
if(!$trustedBool
|| !is_null($element->find('i[title="Elite Uploader"]', 0))
|| !is_null($element->find('i[title="Verified Uploader"]', 0))){
|| !is_null($element->find('i[title="Verified Uploader"]', 0))) {
$item = array();
$item['uri'] = self::URI . $element->find('a', 2)->href;
$item['id'] = self::URI . $element->find('a.cellMainLink', 0)->href;