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

Commit

Permalink
feat: Added namespace, classes to use and spelling correction
Browse files Browse the repository at this point in the history
  • Loading branch information
joserick committed Apr 13, 2019
1 parent 1125b4b commit f88585a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
6 changes: 5 additions & 1 deletion src/Joserick/Plex/Server/Library/Item/Album.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

namespace Joserick\Plex\Server\Library\Item;

use Joserick\Plex\Server\Library\Plex_Server_Library_ItemParentAbstract;

/**
* Plex Library Album
*
Expand Down Expand Up @@ -55,7 +59,7 @@ public function setAttributes($attribute)
}

/**
* Returns an array of all the track objects for the intstantiated album.
* Returns an array of all the track objects for the instantiated album.
*
* @uses Plex_Server_Library::getItems()
* @uses Plex_Server_Library_ItemAbstract::buildChildrenEndpoint()
Expand Down
6 changes: 5 additions & 1 deletion src/Joserick/Plex/Server/Library/Item/Season.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

namespace Joserick\Plex\Server\Library\Item;

use Joserick\Plex\Server\Library\Plex_Server_Library_ItemParentAbstract;

/**
* Plex Library Season
*
Expand Down Expand Up @@ -55,7 +59,7 @@ public function setAttributes($attribute)
}

/**
* Returns an array of all the episode objects for the intstantiated season.
* Returns an array of all the episode objects for the instantiated season.
*
* @uses Plex_Server_Library::getItems()
* @uses Plex_Server_Library_ItemAbstract::buildChildrenEndpoint()
Expand Down
8 changes: 6 additions & 2 deletions src/Joserick/Plex/Server/Library/Item/Show.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

namespace Joserick\Plex\Server\Library\Item;

use Joserick\Plex\Server\Library\Plex_Server_Library_ItemGrandparentAbstract;

/**
* Plex Library Show
*
Expand Down Expand Up @@ -55,7 +59,7 @@ public function setAttributes($attribute)
}

/**
* Returns an array of all the season objects for the intstantiated show.
* Returns an array of all the season objects for the instantiated show.
*
* @uses Plex_Server_Library::getItems()
* @uses Plex_Server_Library_ItemAbstract::buildChildrenEndpoint()
Expand Down Expand Up @@ -91,7 +95,7 @@ public function getSeason($polymorphicData)
* @uses Plex_Server_Library::getItems()
* @uses Plex_Server_Library_ItemAbstract::buildAllLeavesEndpoint()
*
* @ return Plex_Server_Library_Item_Episode[] Array of all the episodes for
* @return Plex_Server_Library_Item_Episode[] Array of all the episodes for
* a given show.
*/
public function getAllEpisodes()
Expand Down

0 comments on commit f88585a

Please sign in to comment.