mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 02:02:41 +01:00
Applied various linter fixes.
Summary: Applied some more linter fixes that I previously missed because my global `arc` install was out-of-date. Test Plan: Will run `arc unit` on another host. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9443
This commit is contained in:
parent
7f1c07973d
commit
d0128afa29
44 changed files with 83 additions and 86 deletions
|
@ -8,4 +8,3 @@ index a1f7255..b5fb7b8 100644
|
||||||
fig
|
fig
|
||||||
-grape
|
-grape
|
||||||
honeydew
|
honeydew
|
||||||
|
|
||||||
|
|
|
@ -9,4 +9,3 @@ index a1f7255..fa84742 100644
|
||||||
+guava
|
+guava
|
||||||
+gooseberry
|
+gooseberry
|
||||||
honeydew
|
honeydew
|
||||||
|
|
||||||
|
|
|
@ -15,4 +15,3 @@ index bf66874..071dd49 100644
|
||||||
banana
|
banana
|
||||||
grape
|
grape
|
||||||
-honeydew
|
-honeydew
|
||||||
|
|
||||||
|
|
|
@ -104,7 +104,7 @@ final class PhabricatorBotFeedNotificationHandler
|
||||||
$latest = $this->getConduit()->callMethodSynchronous(
|
$latest = $this->getConduit()->callMethodSynchronous(
|
||||||
'feed.query',
|
'feed.query',
|
||||||
array(
|
array(
|
||||||
'limit'=>1
|
'limit' => 1,
|
||||||
));
|
));
|
||||||
|
|
||||||
foreach ($latest as $story) {
|
foreach ($latest as $story) {
|
||||||
|
@ -129,7 +129,7 @@ final class PhabricatorBotFeedNotificationHandler
|
||||||
array(
|
array(
|
||||||
'limit' => $config_page_size,
|
'limit' => $config_page_size,
|
||||||
'after' => $chrono_key_cursor,
|
'after' => $chrono_key_cursor,
|
||||||
'view'=>'text'
|
'view' => 'text',
|
||||||
));
|
));
|
||||||
|
|
||||||
foreach ($stories as $story) {
|
foreach ($stories as $story) {
|
||||||
|
|
Loading…
Reference in a new issue