Skip to content

Commit

Permalink
rename variables (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ibrahimhizeoui authored and Nyholm committed Aug 20, 2017
1 parent 224910a commit 0854dcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Api/Customer.php
Expand Up @@ -85,7 +85,7 @@ public function create(Model $customer)

/**
* @param int $customerNo
* @param Model $costumer
* @param Model $customer
*
* @return Model|ResponseInterface
*
Expand All @@ -94,9 +94,9 @@ public function create(Model $customer)
*
* @see https://billogram.com/api/documentation#customers_edit
*/
public function update(int $customerNo, Model $costumer)
public function update(int $customerNo, Model $customer)
{
$response = $this->httpPut('/customer/'.$customerNo, $costumer->toArray());
$response = $this->httpPut('/customer/'.$customerNo, $customer->toArray());
if (!$this->hydrator) {
return $response;
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Api/CostumerTest.php → tests/Api/CustomerTest.php
Expand Up @@ -17,7 +17,7 @@
/**
* @author Ibrahim Hizeoui <ibrahimhizeoui@gmail.com>
*/
class CostumerTest /*extends BaseTestCase*/
class CustomerTest /*extends BaseTestCase*/
{
/*
* @return string|null the directory where cached responses are stored
Expand Down

0 comments on commit 0854dcc

Please sign in to comment.