mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 02:39:47 +02:00
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of the Tmdb PHP API created by Michael Roterman.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*
|
|
* @package Tmdb
|
|
* @author Michael Roterman <michael@wtfz.net>
|
|
* @copyright (c) 2013, Michael Roterman
|
|
* @version 0.0.1
|
|
*/
|
|
namespace Tmdb\Model\Collection;
|
|
|
|
use Tmdb\Model\Common\GenericCollection;
|
|
use Tmdb\Model\Collection\People\PersonInterface;
|
|
use Tmdb\Model\Person;
|
|
|
|
/**
|
|
* Class People
|
|
* @package Tmdb\Model\Collection
|
|
*/
|
|
class People extends GenericCollection
|
|
{
|
|
/**
|
|
* Returns all people
|
|
*
|
|
* @return Person[]
|
|
*/
|
|
public function getPeople()
|
|
{
|
|
return $this->data;
|
|
}
|
|
|
|
/**
|
|
* Retrieve a person from the collection
|
|
*
|
|
* @param $id
|
|
* @return Person
|
|
*/
|
|
public function getPerson($id)
|
|
{
|
|
return $this->filterId($id);
|
|
}
|
|
|
|
/**
|
|
* Add a person to the collection
|
|
*
|
|
* @param PersonInterface $person
|
|
*/
|
|
public function addPerson(PersonInterface $person)
|
|
{
|
|
$this->data[] = $person;
|
|
}
|
|
}
|