Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions src/Models/Company.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ class Company
protected $name;

/**
* Get the owners ID.
* Get the owner's ID.
*
* @var int
*/
protected $ownerId;

/**
* Get the owners name.
* Get the owner's name.
*
* @var string
*/
Expand All @@ -54,14 +54,14 @@ class Company
protected $tag;

/**
* Get the companies logo image URL.
* Get the company's logo image URL.
*
* @var string
*/
protected $logo;

/**
* Get the companies cover image URL.
* Get the company's cover image URL.
*
* @var string
*/
Expand Down Expand Up @@ -89,14 +89,14 @@ class Company
protected $requirements;

/**
* Get the companies website.
* Get the company's website.
*
* @var string|null
*/
protected $website;

/**
* Get the companies social information.
* Get the company's social information.
*
* @var Social
*/
Expand Down Expand Up @@ -270,7 +270,7 @@ public function getTag(): string
}

/**
* Get the URL to the companies logo.
* Get the URL to the company's logo.
*
* @return string
*/
Expand All @@ -280,7 +280,7 @@ public function getLogo(): string
}

/**
* Get the URL to the companies cover image.
* Get the URL to the company's cover image.
*
* @return string
*/
Expand All @@ -300,7 +300,7 @@ public function getInformation(): string
}

/**
* Get the companies rules.
* Get the company's rules.
*
* @return string
*/
Expand All @@ -310,7 +310,7 @@ public function getRules(): string
}

/**
* Get the companies requirements.
* Get the company's requirements.
*
* @return string
*/
Expand All @@ -320,7 +320,7 @@ public function getRequirements(): string
}

/**
* Get the companies website URL.
* Get the company's website URL.
*
* @return string|null
*/
Expand All @@ -330,7 +330,7 @@ public function getWebsite(): ?string
}

/**
* Get the companies social information.
* Get the company's social information.
*
* @return Social
*/
Expand Down Expand Up @@ -360,7 +360,7 @@ public function getMembersCount(): int
}

/**
* Get the companies recruitment status i.e. Open or Closed.
* Get the company's recruitment status i.e. Open or Closed.
*
* @return string
*/
Expand All @@ -370,7 +370,7 @@ public function getRecruitment(): string
}

/**
* Get the companies primary language.
* Get the company's primary language.
*
* @return string
*/
Expand Down
14 changes: 7 additions & 7 deletions src/Models/CompanyMember.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,42 +7,42 @@
class CompanyMember
{
/**
* The players member id within the company.
* The player's member id within the company.
*
* @var int
*/
protected $id;

/**
* The players account id.
* The player's account id.
*
* @var int
*/
protected $userId;

/**
* The players username.
* The player's username.
*
* @var string
*/
protected $username;

/**
* The players steam id.
* The player's steam id.
*
* @var string
*/
protected $steamId;

/**
* The players role id within the company.
* The player's role id within the company.
*
* @var int
*/
protected $roleId;

/**
* The players role within the company.
* The player's role within the company.
*
* @var string
*/
Expand Down Expand Up @@ -123,7 +123,7 @@ public function getRoleId(): int
}

/**
* Get the name of members role.
* Get the name of member's role.
*
* @return string
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Models/CompanyPost.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CompanyPost
protected $title;

/**
* A summery of the post content.
* A summary of the post content.
*
* @var string
*/
Expand Down Expand Up @@ -135,7 +135,7 @@ public function getAuthor(): string
}

/**
* Check if the post is pinned on the companies page.
* Check if the post is pinned on the company's page.
*
* @return bool
*/
Expand Down
20 changes: 10 additions & 10 deletions src/Models/Patreon.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Patreon
protected $isPatron;

/**
* If the players patron subscription is active.
* If the player's patron subscription is active.
*
* @var bool
*/
Expand All @@ -26,28 +26,28 @@ class Patreon
protected $color;

/**
* The players tier ID.
* The player's tier ID.
*
* @var int|null
*/
protected $tierId;

/**
* The players current pledge.
* The player's current pledge.
*
* @var int|null
*/
protected $currentPledge;

/**
* The players lifetime pledge.
* The player's lifetime pledge.
*
* @var int|null
*/
protected $lifetimePledge;

/**
* The players next pledge.
* The player's next pledge.
*
* @var int|null
*/
Expand Down Expand Up @@ -103,7 +103,7 @@ public function isPatron(): bool
}

/**
* Get if the players patron subscription is active.
* Get if the player's patron subscription is active.
*
* @return mixed
*/
Expand All @@ -123,7 +123,7 @@ public function getColor(): ?string
}

/**
* Get the players tier ID.
* Get the player's tier ID.
*
* @return int|null
*/
Expand All @@ -133,7 +133,7 @@ public function getTierId(): ?int
}

/**
* Get the players current pledge.
* Get the player's current pledge.
*
* @return int|null
*/
Expand All @@ -143,7 +143,7 @@ public function getCurrentPledge(): ?int
}

/**
* Get the players lifetime pledge.
* Get the player's lifetime pledge.
*
* @return int|null
*/
Expand All @@ -153,7 +153,7 @@ public function getLifetimePledge(): ?int
}

/**
* Get the players next pledge.
* Get the player's next pledge.
*
* @return int|null
*/
Expand Down
Loading