Skip to content

Commit 8b37d2a

Browse files
committed
Removed topics from the application
GitHub is a better place for documentation while these copies weren't updated in the last 5 years.
1 parent a5d472c commit 8b37d2a

13 files changed

+0
-1374
lines changed

Makefile

-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ install:
3535
update:
3636
composer update
3737

38-
update/topics:
39-
php bin/phpbrew github:build-topics --dir src phpbrew phpbrew
40-
4138
update/completion:
4239
bin/phpbrew zsh --bind phpbrew --program phpbrew > completion/zsh/_phpbrew
4340
bin/phpbrew bash --bind phpbrew --program phpbrew > completion/bash/_phpbrew

phpcs.xml.dist

-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
<exclude name="PSR12.Properties.ConstantVisibility.NotFound"/>
1313
</rule>
1414

15-
<rule ref="Generic.Files.LineLength.TooLong">
16-
<exclude-pattern>src/PhpBrew/Topic/*</exclude-pattern>
17-
</rule>
18-
1915
<rule ref="PSR1.Classes.ClassDeclaration.MultipleClasses">
2016
<exclude-pattern>tests/*</exclude-pattern>
2117
</rule>

phpunit.xml.dist

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@
2727
<filter>
2828
<whitelist>
2929
<directory>src</directory>
30-
<exclude>
31-
<directory suffix=".php">src/PhpBrew/Topic</directory>
32-
</exclude>
3330
</whitelist>
3431
</filter>
3532

src/PhpBrew/Console.php

-12
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,6 @@ public function init()
5858
$this->command('off');
5959
$this->command('switch-off', 'PhpBrew\Command\SwitchOffCommand');
6060

61-
$this->topics(array(
62-
'contribution' => 'PhpBrew\\Topic\\ContributionTopic',
63-
'cookbook' => 'PhpBrew\\Topic\\CookbookTopic',
64-
'home' => 'PhpBrew\\Topic\\HomeTopic',
65-
'migrating-from-homebrew-php-to-phpbrew' => 'PhpBrew\\Topic\\MigratingFromHomebrewPhpToPhpbrewTopic',
66-
'phpbrew-ja' => 'PhpBrew\\Topic\\PHPBrewJATopic',
67-
'release-process' => 'PhpBrew\\Topic\\ReleaseProcessTopic',
68-
'requirement' => 'PhpBrew\\Topic\\RequirementTopic',
69-
'setting-up-configuration' => 'PhpBrew\\Topic\\SettingUpConfigurationTopic',
70-
'troubleshooting' => 'PhpBrew\\Topic\\TroubleshootingTopic',
71-
));
72-
7361
$this->configure();
7462

7563
// We use '#' as the prefix to prevent issue with bash

src/PhpBrew/Topic/ContributionTopic.php

-120
This file was deleted.

0 commit comments

Comments
 (0)