Skip to content
This repository was archived by the owner on Mar 29, 2024. It is now read-only.

Commit b3596d3

Browse files
committed
Fixed Spelling Mistakes
1 parent a907322 commit b3596d3

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

composer.lock

+11-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Services/Accounting/Account.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function update($id, array $data)
2121
$this->service = new \QuickBooks_IPP_Service_Account();
2222
$this->resource = $this->find($id);
2323

24-
$this->handleNameListnData($data, $this->resource);
24+
$this->handleNameListData($data, $this->resource);
2525
isset($data['Lines']) ? $this->createLines($data['Lines'], $this->resource) : '';
2626

2727
return parent::_update($this->context, $this->realm, \QuickBooks_IPP_IDS::RESOURCE_ACCOUNT, $this->resource, $id) ?: $this->service->lastError();

src/Services/Accounting/Term.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function update($id, array $data)
2121
$this->service = new \QuickBooks_IPP_Service_Term();
2222
$this->resource = $this->find($id);
2323

24-
$this->handleNameListnData($data, $this->resource);
24+
$this->handleNameListData($data, $this->resource);
2525
isset($data['Lines']) ? $this->createLines($data['Lines'], $this->resource) : '';
2626

2727
return parent::_update($this->context, $this->realm, \QuickBooks_IPP_IDS::RESOURCE_TERM, $this->resource, $id) ?: $this->service->lastError();

src/Services/Accounting/Vendor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function update($id, array $data)
2121
$this->service = new \QuickBooks_IPP_Service_Vendor();
2222
$this->resource = $this->find($id);
2323

24-
$this->handleNameListnData($data, $this->resource);
24+
$this->handleNameListData($data, $this->resource);
2525
isset($data['Lines']) ? $this->createLines($data['Lines'], $this->resource) : '';
2626

2727
return parent::_update($this->context, $this->realm, \QuickBooks_IPP_IDS::RESOURCE_VENDOR, $this->resource, $id) ?: $this->service->lastError();

0 commit comments

Comments
 (0)