Skip to content

Commit ff220f8

Browse files
fix: update @param in doc blocks
1 parent eb94218 commit ff220f8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Illuminate/Database/Events/DatabaseRefreshed.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class DatabaseRefreshed implements MigrationEventContract
1010
* Create a new event instance.
1111
*
1212
* @param string|null $database
13-
* @param bool seeding
13+
* @param bool $seeding
1414
* @return void
1515
*/
1616
public function __construct(

src/Illuminate/Database/Migrations/DatabaseMigrationRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function getMigrations($steps)
7171
/**
7272
* Get the list of the migrations by batch number.
7373
*
74-
* @param int $batchNumber
74+
* @param int $batch
7575
* @return array
7676
*/
7777
public function getMigrationsByBatch($batch)

src/Illuminate/Foundation/Console/ChannelListCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ChannelListCommand extends Command
3636
/**
3737
* Execute the console command.
3838
*
39-
* @param \Illuminate\Contracts\Broadcasting\Broadcaster
39+
* @param \Illuminate\Contracts\Broadcasting\Broadcaster $broadcaster
4040
* @return void
4141
*/
4242
public function handle(Broadcaster $broadcaster)

src/Illuminate/Support/DefaultProviders.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function merge(array $providers)
6060
/**
6161
* Replace the given providers with other providers.
6262
*
63-
* @param array $items
63+
* @param array $replacements
6464
* @return static
6565
*/
6666
public function replace(array $replacements)

src/Illuminate/Support/Testing/Fakes/ChainedBatchTruthTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function __construct(Closure $callback)
2727
/**
2828
* Invoke the truth test with the given pending batch.
2929
*
30-
* @param \Illuminate\Bus\PendingBatch
30+
* @param \Illuminate\Bus\PendingBatch $pendingBatch
3131
* @return bool
3232
*/
3333
public function __invoke($pendingBatch)

0 commit comments

Comments
 (0)