Skip to content

Commit

Permalink
declare visibility on class constants
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvankooten committed Oct 9, 2023
1 parent 3aa35c3 commit 318f2ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Rates.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class Rates
{
const RATE_STANDARD = 'standard';
public const RATE_STANDARD = 'standard';

private $rates = [];

Expand Down
2 changes: 1 addition & 1 deletion src/Vies/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Client
/**
* @const string
*/
const URL = 'https://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl';
private const URL = 'https://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl';

/**
* @var SoapClient
Expand Down

0 comments on commit 318f2ec

Please sign in to comment.