Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
where's my wallet?
Browse files Browse the repository at this point in the history
add wallet methods
update readme
  • Loading branch information
adrianmejias committed Sep 21, 2017
1 parent f41849a commit 8084fa1
Show file tree
Hide file tree
Showing 5 changed files with 433 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ The package will automatically register itself. If not, then add the alias in `c
...

'FactomApi' => AdrianMejias\FactomApi\Facades\FactomApi::class,
'FactomWalletApi' => AdrianMejias\FactomApi\Facades\FactomWalletApi::class,
'FactomDebugApi' => AdrianMejias\FactomApi\Facades\FactomDebugApi::class,

...
```
Expand Down
2 changes: 1 addition & 1 deletion src/Facades/FactomDebugApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class FactomDebugApi extends Facade
{
public static function getFacadeAccessor()
{
return 'factomDebugApi';
return 'FactomDebugApi';
}
}
2 changes: 1 addition & 1 deletion src/Facades/FactomWalletApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class FactomWalletApi extends Facade
{
public static function getFacadeAccessor()
{
return 'factomWalletApi';
return 'FactomWalletApi';
}
}
2 changes: 2 additions & 0 deletions src/FactomConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

namespace AdrianMejias\FactomApi;

use AdrianMejias\FactomApi\Exceptions\InvalidFactomApiConfig;

class FactomConnector
{
/**
Expand Down
Loading

0 comments on commit 8084fa1

Please sign in to comment.