Skip to content

Commit

Permalink
changes on class name
Browse files Browse the repository at this point in the history
  • Loading branch information
Escarter authored Oct 17, 2024
1 parent 027c7e1 commit 5299a83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/OpenapiMoMo.php → src/Openapimomo.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php

namespace Escarter\OpenapiMoMo;
namespace Escarter\Openapimomo;

use GuzzleHttp\Client;
use Illuminate\Support\Str;
use GuzzleHttp\Exception\ClientException;
use GuzzleHttp\Exception\RequestException;

class OpenapiMoMo
class Openapimomo
{
public function sandboxApiUserandKey(string $reference_id, string $ocp_apim_sub_key)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Escarter\OpenapiMoMo;
namespace Escarter\Openapimomo;

use Illuminate\Support\ServiceProvider;

class OpenapiMoMoServiceProvider extends ServiceProvider
class OpenapimomoServiceProvider extends ServiceProvider
{
/**
* Register services.
Expand All @@ -14,8 +14,8 @@ class OpenapiMoMoServiceProvider extends ServiceProvider
public function register()
{
$this->app->bind(
'OpenapiMoMo', function () {
return new OpenapiMoMo();
'Openapimomo', function () {
return new Openapimomo();
}
);
}
Expand Down

0 comments on commit 5299a83

Please sign in to comment.