Skip to content

Commit 56f3bf8

Browse files
authored
Merge pull request #1502 from hydephp/normalize-code-comments
Clean up and normalize class description comments
2 parents 5029740 + 724fc2b commit 56f3bf8

24 files changed

+31
-20
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This serves two purposes:
1414

1515
### Changed
1616
- Shortened the path printed to console when using the dashboard to create a page in https://github.com/hydephp/develop/pull/1492
17+
- Code cleanup and style improvements in https://github.com/hydephp/develop/pull/1501 and https://github.com/hydephp/develop/pull/1502
1718

1819
### Deprecated
1920
- for soon-to-be removed features.

packages/framework/src/Console/Commands/BuildRssFeedCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use LaravelZero\Framework\Commands\Command;
99

1010
/**
11-
* Hyde command to run the build process for the RSS feed.
11+
* Run the build process for the RSS feed.
1212
*/
1313
class BuildRssFeedCommand extends Command
1414
{

packages/framework/src/Console/Commands/BuildSearchCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use LaravelZero\Framework\Commands\Command;
99

1010
/**
11-
* Hyde command to run the build process for the documentation search index.
11+
* Run the build process for the documentation search index.
1212
*/
1313
class BuildSearchCommand extends Command
1414
{

packages/framework/src/Console/Commands/BuildSiteCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use function app;
2121

2222
/**
23-
* Hyde Command to run the Build Process.
23+
* Run the static site build process.
2424
*/
2525
class BuildSiteCommand extends Command
2626
{

packages/framework/src/Console/Commands/BuildSitemapCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use LaravelZero\Framework\Commands\Command;
99

1010
/**
11-
* Hyde command to run the build process for the sitemap.
11+
* Run the build process for the sitemap.
1212
*/
1313
class BuildSitemapCommand extends Command
1414
{

packages/framework/src/Console/Commands/ChangeSourceDirectoryCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
use function basename;
2222
use function realpath;
2323

24+
/**
25+
* Change the source directory for your project.
26+
*/
2427
class ChangeSourceDirectoryCommand extends Command
2528
{
2629
/** @var string */

packages/framework/src/Console/Commands/DebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use function app;
1515

1616
/**
17-
* Hyde Command to print debug information.
17+
* Print debug information.
1818
*/
1919
class DebugCommand extends Command
2020
{

packages/framework/src/Console/Commands/MakePageCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use function ucfirst;
1616

1717
/**
18-
* Hyde Command to scaffold a new Markdown or Blade page file.
18+
* Scaffold a new Markdown or Blade page file.
1919
*/
2020
class MakePageCommand extends Command
2121
{

packages/framework/src/Console/Commands/MakePostCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use function ucwords;
1313

1414
/**
15-
* Hyde Command to scaffold a new Markdown Post.
15+
* Scaffold a new Markdown blog post file.
1616
*/
1717
class MakePostCommand extends Command
1818
{

packages/framework/src/Console/Commands/PackageDiscoverCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
use Illuminate\Foundation\Console\PackageDiscoverCommand as BaseCommand;
99
use Illuminate\Foundation\PackageManifest;
1010

11+
/**
12+
* Extended package discovery command to use the custom manifest path.
13+
*/
1114
class PackageDiscoverCommand extends BaseCommand
1215
{
1316
/** @var true */

0 commit comments

Comments
 (0)