Skip to content

Commit

Permalink
Fix toArray
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatisD committed Jan 22, 2021
1 parent 4b68541 commit dc5c945
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ use Dotenv\Dotenv;
$dotenv = Dotenv::createImmutable(dirname(__DIR__));
$dotenv->load();

$username = $_ENV["USERNAME"]; // username can be obtained from https://www.aade.gr/epiheiriseis/forologikes-ypiresies/mitroo/anazitisi-basikon-stoiheion-mitrooy-epiheiriseon
$password = $_ENV["PASSWORD"]; // password
$authorisedCallerAfm = $_ENV["AUTH"]; // optional if same with the caller's afm but if present must be authorised
$username = $_ENV["AADE_USERNAME"]; // username can be obtained from https://www.aade.gr/epiheiriseis/forologikes-ypiresies/mitroo/anazitisi-basikon-stoiheion-mitrooy-epiheiriseon
$password = $_ENV["AADE_PASSWORD"]; // password
$authorisedCallerAfm = $_ENV["AADE_AUTH"]; // optional if same with the caller's afm but if present must be authorised
$afm = $_ENV["AFM"]; // AFM to search

$crawler = new AadeAfm($username, $password, $authorisedCallerAfm);
Expand Down

0 comments on commit dc5c945

Please sign in to comment.