Skip to content

Commit

Permalink
[11.x] Fix: update @param in doc blocks (#50791)
Browse files Browse the repository at this point in the history
* fix: update @param in doc blocks

* fix: update code style
  • Loading branch information
saMahmoudzadeh committed Mar 27, 2024
1 parent eb94218 commit e740b58
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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

0 comments on commit e740b58

Please sign in to comment.