Skip to content

Commit 8447718

Browse files
authored
Merge pull request #11 from Codexshaper/analysis-QMP2do
Apply fixes from StyleCI
2 parents 314d550 + 2e88d6a commit 8447718

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/Models/Customer.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ class Customer extends BaseModel
1212

1313
protected function downloads($id)
1414
{
15-
$this->endpoint = "customers/{$id}/downloads";
16-
return self::all();
15+
$this->endpoint = "customers/{$id}/downloads";
16+
17+
return self::all();
1718
}
1819
}

src/Models/Term.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Term extends BaseModel
1111
/**
1212
* Retrieve all Items.
1313
*
14-
* @param integer $attribute_id
14+
* @param int $attribute_id
1515
* @param array $options
1616
*
1717
* @return array

src/Models/Variation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Variation extends BaseModel
1111
/**
1212
* Retrieve all Items.
1313
*
14-
* @param integer $product_id
14+
* @param int $product_id
1515
* @param array $options
1616
*
1717
* @return array

0 commit comments

Comments
 (0)