Skip to content
This repository has been archived by the owner on Jun 9, 2023. It is now read-only.

Commit

Permalink
style: Correct spelling and name of varibles
Browse files Browse the repository at this point in the history
  • Loading branch information
joserick committed Apr 13, 2019
1 parent e0edee0 commit 8d917f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Joserick/Plex/Server/Library/ItemParentAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ abstract class Plex_Server_Library_ItemParentAbstract
* Date the item was made originally available.
* @var DateTime
*/
protected $originallyAvailalbleAt;
protected $originallyAvailableAt;

/**
* Sets an array of attribues, if they exist, to the corresponding class
* Sets an array of attributes, if they exist, to the corresponding class
* member.
*
* @param array $attribute An array of item attributes as passed back by the
Expand Down Expand Up @@ -213,7 +213,7 @@ public function getParentIndex()
/**
* Sets the parent item's index.
*
* @param integer $parentRatingKey The parent item's index.
* @param integer $parentIndex The parent item's index.
*
* @uses Plex_Server_Library_ItemParentAbstract::$parentIndex
*
Expand All @@ -239,7 +239,7 @@ public function getParentThumb()
/**
* Sets the parent item's thumb.
*
* @param string $parentTitle string The parent item's thumb.
* @param string $parentThumb string The parent item's thumb.
*
* @uses Plex_Server_Library_ItemParentAbstract::$parentThumb
*
Expand All @@ -257,15 +257,15 @@ public function setParentThumb($parentThumb)
*
* @return DateTime The time at which the item was made available.
*/
public function getOriginallyAvailalbleAt()
public function getOriginallyAvailableAt()
{
return $this->originallyAvailableAt;
}

/**
* Sets the time at which the item was made available.
*
* @param integer $updatedAtTs The unix timestamp representing the time the
* @param integer $originallyAvailableAtTs The unix timestamp representing the time the
* item was made available. This will be turned into a DateTime object.
*
* @uses Plex_Server_Library_ItemAbstract::$originallyAvailableAt
Expand Down

0 comments on commit 8d917f2

Please sign in to comment.