Merge pull request #1760 from pavel-mironchik/typos

Fix a couple typos
This commit is contained in:
Cüneyt Şentürk 2021-01-15 17:28:24 +03:00 committed by GitHub
commit 4fcf6affc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class CreateDocumentItemsAndTotals extends Job
/** /**
* Execute the job. * Execute the job.
* *
* @return voide * @return void
*/ */
public function handle() public function handle()
{ {

View File

@ -17,7 +17,7 @@ class IncreaseNextDocumentNumber
*/ */
public function handle(Event $event) public function handle(Event $event)
{ {
// Update next invoice number // Update next document number
$this->increaseNextDocumentNumber($event->document->type); $this->increaseNextDocumentNumber($event->document->type);
} }
} }