Browse Source

Style fixes

microsub
J. King 5 years ago
parent
commit
e3d2215920
  1. 1
      lib/CLI.php
  2. 2
      lib/Context/ExclusionContext.php
  3. 6
      lib/Database.php
  4. 8
      lib/REST/TinyTinyRSS/Search.php
  5. 4
      tests/cases/Database/SeriesArticle.php
  6. 1
      tests/cases/REST/Fever/TestAPI.php

1
lib/CLI.php

@ -128,6 +128,7 @@ USAGE_TEXT;
} else {
return $this->userAddOrSetPassword("passwordSet", $args["<username>"], $args["<password>"], $args["--oldpass"]);
}
// no break
case "unset-pass":
if ($args['--fever']) {
$this->getFever()->unregister($args["<username>"]);

2
lib/Context/ExclusionContext.php

@ -87,7 +87,7 @@ class ExclusionContext {
$spec[$a] = null;
}
}
return array_values(array_unique(array_filter($spec, function ($v) {
return array_values(array_unique(array_filter($spec, function($v) {
return !is_null($v);
})));
}

6
lib/Database.php

@ -147,7 +147,7 @@ class Database {
$params = [];
$count = 0;
$convType = Db\AbstractStatement::TYPE_NORM_MAP[Statement::TYPES[$type]];
foreach($values as $v) {
foreach ($values as $v) {
$v = ValueInfo::normalize($v, $convType, null, "sql");
if (is_null($v)) {
// nulls are pointless to have
@ -194,7 +194,7 @@ class Database {
$values = [];
$like = $this->db->sqlToken("like");
$embedSet = sizeof($terms) > ((int) (self::LIMIT_SET_SIZE / sizeof($cols)));
foreach($terms as $term) {
foreach ($terms as $term) {
$embedTerm = ($embedSet && strlen($term) <= self::LIMIT_SET_STRING_LENGTH);
$term = str_replace(["%", "_", "^"], ["^%", "^_", "^^"], $term);
$term = "%$term%";
@ -1458,7 +1458,7 @@ class Database {
}
}
if ($seen) {
$spec = $opt['cte_name']."(".implode(",",$opt['cte_cols']).")";
$spec = $opt['cte_name']."(".implode(",", $opt['cte_cols']).")";
$q->setCTE($spec, $opt['cte_body'], $opt['cte_types'], $opt['cte_values']);
}
}

8
lib/REST/TinyTinyRSS/Search.php

@ -82,6 +82,7 @@ class Search {
$state = self::STATE_IN_TOKEN_OR_TAG;
continue 3;
}
// no break
case self::STATE_BEFORE_TOKEN_QUOTED:
switch ($char) {
case "":
@ -130,6 +131,7 @@ class Search {
$state = self::STATE_IN_TOKEN_OR_TAG_QUOTED;
continue 3;
}
// no break
case self::STATE_IN_DATE:
while ($pos < $stop && $search[$pos] !== " ") {
$buffer .= $search[$pos++];
@ -169,6 +171,7 @@ class Search {
$buffer .= $char;
continue 3;
}
// no break
case self::STATE_IN_TOKEN:
while ($pos < $stop && $search[$pos] !== " ") {
$buffer .= $search[$pos++];
@ -214,6 +217,7 @@ class Search {
$buffer .= $char;
continue 3;
}
// no break
case self::STATE_IN_TOKEN_OR_TAG:
switch ($char) {
case "":
@ -223,7 +227,7 @@ class Search {
$flag_negative = false;
$buffer = $tag = "";
continue 3;
case ":";
case ":":
$tag = $buffer;
$buffer = "";
$state = self::STATE_IN_TOKEN;
@ -232,6 +236,7 @@ class Search {
$buffer .= $char;
continue 3;
}
// no break
case self::STATE_IN_TOKEN_OR_TAG_QUOTED:
switch ($char) {
case "":
@ -267,6 +272,7 @@ class Search {
$buffer .= $char;
continue 3;
}
// no break
default:
throw new \Exception; // @codeCoverageIgnore
}

4
tests/cases/Database/SeriesArticle.php

@ -498,7 +498,7 @@ trait SeriesArticle {
'Excluded folder tree' => [(new Context)->not->folder(1), [1,2,3,4,19,20]],
'Excluding label ID 2' => [(new Context)->not->label(2), [2,3,4,6,7,8,19]],
'Excluding label "Fascinating"' => [(new Context)->not->labelName("Fascinating"), [2,3,4,6,7,8,19]],
'Search 501 terms' => [(new Context)->searchTerms(array_merge(range(1,500),[str_repeat("a", 1000)])), []],
'Search 501 terms' => [(new Context)->searchTerms(array_merge(range(1, 500), [str_repeat("a", 1000)])), []],
'With tag ID 1' => [(new Context)->tag(1), [5,6,7,8]],
'With tag ID 5' => [(new Context)->tag(5), [7,8,19,20]],
'With tag ID 1 or 5' => [(new Context)->tags([1,5]), [5,6,7,8,19,20]],
@ -1060,7 +1060,7 @@ trait SeriesArticle {
}
public function provideArrayContextOptions() {
foreach([
foreach ([
"articles", "editions",
"subscriptions", "foldersShallow", //"folders",
"tags", "tagNames", "labels", "labelNames",

1
tests/cases/REST/Fever/TestAPI.php

@ -26,7 +26,6 @@ use Zend\Diactoros\Response\EmptyResponse;
/** @covers \JKingWeb\Arsse\REST\Fever\API<extended> */
class TestAPI extends \JKingWeb\Arsse\Test\AbstractTest {
protected function v($value) {
return $value;
}

Loading…
Cancel
Save