Skip to content

Commit

Permalink
Fix #120
Browse files Browse the repository at this point in the history
  • Loading branch information
globalcitizen committed Jan 4, 2023
1 parent 4254e1a commit 043892d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions oophp-iban.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# OO wrapper for 'php-iban.php'
Class IBAN {

public $iban;

function __construct($iban = '') {
require_once('php-iban.php'); # load the procedural codebase
$this->iban = $iban;
Expand Down Expand Up @@ -109,6 +111,8 @@ public function Countries() {
# IBANCountry
Class IBANCountry {

public $code;

# constructor with code
function __construct($code = '') {
$this->code = $code;
Expand Down

0 comments on commit 043892d

Please sign in to comment.