Skip to content

Commit 8756d82

Browse files
committed
Remove @group annotations
Summary: I'm pretty sure that `@group` annotations are useless now... see D9855. Also fixed various other minor issues. Test Plan: Eye-ball it. Reviewers: #blessed_reviewers, epriestley, chad Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9859
1 parent 1d4b064 commit 8756d82

File tree

431 files changed

+490
-1711
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

431 files changed

+490
-1711
lines changed

conf/default.conf.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@
798798
// '#/autobuilt/#',
799799
),
800800

801-
// If you set this to true, users can accept their own revisions. This action
801+
// If you set this to true, users can accept their own revisions. This action
802802
// is disabled by default because it's most likely not a behavior you want,
803803
// but it proves useful if you are working alone on a project and want to make
804804
// use of all of differential's features.
@@ -817,7 +817,7 @@
817817

818818
// If you set this to true, any user can reopen a revision so long as it has
819819
// been closed. This can be useful if a revision is accidentally closed or
820-
// if a developer changes his or her mind after closing a revision. If it is
820+
// if a developer changes his or her mind after closing a revision. If it is
821821
// false, reopening is not allowed.
822822
'differential.allow-reopen' => false,
823823

externals/balanced-php/tests/Balanced/SuiteTest.php

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
* <li>$BALANCED_URL_ROOT If set applies to \Balanced\Settings::$url_root.
2828
* <li>$BALANCED_API_KEY If set applies to \Balanced\Settings::$api_key.
2929
* </ul>
30-
*
31-
* @group suite
3230
*/
3331
class SuiteTest extends \PHPUnit_Framework_TestCase
3432
{
@@ -784,17 +782,17 @@ function testBankAccountVerificationSuccess() {
784782
}
785783

786784
function testEvents() {
787-
$prev_num_events = Marketplace::mine()->events->total();
788-
$account = self::_createBuyer();
789-
$account->debit(123);
790-
$cur_num_events = Marketplace::mine()->events->total();
791-
$count = 0;
785+
$prev_num_events = Marketplace::mine()->events->total();
786+
$account = self::_createBuyer();
787+
$account->debit(123);
788+
$cur_num_events = Marketplace::mine()->events->total();
789+
$count = 0;
792790
while ($cur_num_events == $prev_num_events && $count < 10) {
793791
printf("waiting for events - %d, %d == %d\n", $count + 1, $cur_num_events, $prev_num_events);
794792
sleep(2); // 2 seconds
795-
$cur_num_events = Marketplace::mine()->events->total();
796-
$count += 1;
797-
}
793+
$cur_num_events = Marketplace::mine()->events->total();
794+
$count += 1;
795+
}
798796
$this->assertTrue($cur_num_events > $prev_num_events);
799797
}
800798
}

src/aphront/AphrontController.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?php
22

3-
/**
4-
* @group aphront
5-
*/
63
abstract class AphrontController extends Phobject {
74

85
private $request;

src/aphront/AphrontURIMapper.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?php
22

3-
/**
4-
* @group aphront
5-
*/
63
final class AphrontURIMapper {
74

85
private $map;
@@ -49,4 +46,5 @@ final private function tryRule($rule, $value, $path) {
4946

5047
return array(null, null);
5148
}
49+
5250
}

src/aphront/configuration/AphrontApplicationConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
/**
44
* @task routing URI Routing
5-
* @group aphront
65
*/
76
abstract class AphrontApplicationConfiguration {
87

@@ -228,4 +227,5 @@ final public function buildControllerForPath($path) {
228227

229228
return array($controller, $uri_data);
230229
}
230+
231231
}

src/aphront/configuration/AphrontDefaultApplicationConfiguration.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* NOTE: Do not extend this!
55
*
66
* @concrete-extensible
7-
* @group aphront
87
*/
98
class AphrontDefaultApplicationConfiguration
109
extends AphrontApplicationConfiguration {

src/aphront/console/DarkConsoleController.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?php
22

3-
/**
4-
* @group console
5-
*/
63
final class DarkConsoleController extends PhabricatorController {
74

85
protected $op;

src/aphront/console/DarkConsoleCore.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?php
22

3-
/**
4-
* @group console
5-
*/
63
final class DarkConsoleCore {
74

85
private $plugins = array();

src/aphront/console/DarkConsoleDataController.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?php
22

3-
/**
4-
* @group console
5-
*/
63
final class DarkConsoleDataController extends PhabricatorController {
74

85
private $key;

src/aphront/console/plugin/DarkConsoleErrorLogPlugin.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?php
22

3-
/**
4-
* @group console
5-
*/
63
final class DarkConsoleErrorLogPlugin extends DarkConsolePlugin {
74

85
public function getName() {
@@ -98,4 +95,5 @@ public function renderPanel() {
9895
phutil_tag('pre', array('class' => 'PhabricatorMonospaced'), $details),
9996
));
10097
}
98+
10199
}

0 commit comments

Comments
 (0)