Skip to content

Commit

Permalink
Improve type safty for Config/repository file (laravel#53520)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisuchi authored Nov 14, 2024
1 parent 9985aeb commit 86803dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Config/Repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Repository implements ArrayAccess, ConfigContract
/**
* All of the configuration items.
*
* @var array
* @var array<string,mixed>
*/
protected $items = [];

Expand Down Expand Up @@ -60,8 +60,8 @@ public function get($key, $default = null)
/**
* Get many configuration values.
*
* @param array $keys
* @return array
* @param array<string|int,mixed> $keys
* @return array<string,mixed>
*/
public function getMany($keys)
{
Expand Down

0 comments on commit 86803dc

Please sign in to comment.