mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 17:52:43 +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
|
||||
-grape
|
||||
honeydew
|
||||
|
||||
|
|
|
@ -9,4 +9,3 @@ index a1f7255..fa84742 100644
|
|||
+guava
|
||||
+gooseberry
|
||||
honeydew
|
||||
|
||||
|
|
|
@ -15,4 +15,3 @@ index bf66874..071dd49 100644
|
|||
banana
|
||||
grape
|
||||
-honeydew
|
||||
|
||||
|
|
|
@ -104,7 +104,7 @@ final class PhabricatorBotFeedNotificationHandler
|
|||
$latest = $this->getConduit()->callMethodSynchronous(
|
||||
'feed.query',
|
||||
array(
|
||||
'limit'=>1
|
||||
'limit' => 1,
|
||||
));
|
||||
|
||||
foreach ($latest as $story) {
|
||||
|
@ -129,7 +129,7 @@ final class PhabricatorBotFeedNotificationHandler
|
|||
array(
|
||||
'limit' => $config_page_size,
|
||||
'after' => $chrono_key_cursor,
|
||||
'view'=>'text'
|
||||
'view' => 'text',
|
||||
));
|
||||
|
||||
foreach ($stories as $story) {
|
||||
|
|
Loading…
Reference in a new issue