Skip to content

Commit 95d06f5

Browse files
committed
chore: update PHPUnit version in CHANGELOG and fix README example
Updated PHPUnit from ^11.4.0 to ^11.5.50 in the CHANGELOG. Corrected the README example for bulkCandles to use separate array elements for symbols instead of a single string.
1 parent 17f2f20 commit 95d06f5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ New required dependencies:
280280
- `vlucas/phpdotenv: ^5.5` - Environment file support
281281

282282
Updated development dependencies:
283-
- `phpunit/phpunit: ^11.4.0` (was ^10.3.2)
283+
- `phpunit/phpunit: ^11.5.50` (was ^10.3.2)
284284

285285
### Bug Fixes
286286

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ $client = new MarketDataApp\Client('your_api_token');
9191

9292
// Stocks
9393
$candles = $client->stocks->candles('AAPL');
94-
$bulk_candles = $client->stocks->bulkCandles(['AAPL, MSFT']);
94+
$bulk_candles = $client->stocks->bulkCandles(['AAPL', 'MSFT']);
9595
$quote = $client->stocks->quote('AAPL');
9696
$quotes = $client->stocks->quotes(['AAPL', 'MSFT']);
9797
$earnings = $client->stocks->earnings(symbol: 'AAPL', from: '2023-01-01');

0 commit comments

Comments
 (0)