Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[11.x] Fix: update @param in doc blocks #50791

Merged
merged 2 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Events/DatabaseRefreshed.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class DatabaseRefreshed implements MigrationEventContract
* Create a new event instance.
*
* @param string|null $database
* @param bool seeding
* @param bool $seeding
* @return void
*/
public function __construct(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function getMigrations($steps)
/**
* Get the list of the migrations by batch number.
*
* @param int $batchNumber
* @param int $batch
* @return array
*/
public function getMigrationsByBatch($batch)
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/ChannelListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ChannelListCommand extends Command
/**
* Execute the console command.
*
* @param \Illuminate\Contracts\Broadcasting\Broadcaster
* @param \Illuminate\Contracts\Broadcasting\Broadcaster $broadcaster
* @return void
*/
public function handle(Broadcaster $broadcaster)
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Support/DefaultProviders.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function merge(array $providers)
/**
* Replace the given providers with other providers.
*
* @param array $items
* @param array $replacements
* @return static
*/
public function replace(array $replacements)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function __construct(Closure $callback)
/**
* Invoke the truth test with the given pending batch.
*
* @param \Illuminate\Bus\PendingBatch
* @param \Illuminate\Bus\PendingBatch $pendingBatch
* @return bool
*/
public function __invoke($pendingBatch)
Expand Down