jonathanraftery / bullhorn-rest-client

Simple client for the Bullhorn REST API
MIT License
11 stars 14 forks source link

PHP8.2: Using ${var} in strings is deprecated #21

Open LuukWerkzoeken opened 1 year ago

LuukWerkzoeken commented 1 year ago

In bullhorn-rest-client/src/Auth/AuthClient.php

Line 299: throw new BullhornAuthException("Failed to fetch authorization code (HTTP error: ${errorMessage})");

Suggested change: throw new BullhornAuthException("Failed to fetch authorization code (HTTP error: ". $errorMessage .")");