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

Commit

Permalink
feat: Added function for get all clientes of plex server
Browse files Browse the repository at this point in the history
  • Loading branch information
joserick committed Apr 15, 2019
1 parent 5f42493 commit 022b6c0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Joserick/Plex/Plex.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,18 @@ public function getClient($clientName)
return self::$clients[$clientName];
}

/**
* Returns the requested all clients.
*
* @uses Plex::$clients
*
* @return Plex_Client[] The requested Plex client machine.
*/
public function getAllClients()
{
return self::$clients;
}

/**
* Returns the token of the Plex server
*
Expand Down

0 comments on commit 022b6c0

Please sign in to comment.