You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
351 B

<?php
/**
* Creator: jpinkney
* Date: 9/15/15
* Time: 2:12 PM
*/
namespace JPinkney\TVMaze;
/**
* Class Crew
*
* @package JPinkney\TVMaze
*/
class Crew {
/**
* @var
*/
public $type;
/**
* @param $crew_data
*/
public function __construct($crew_data){
$this->type = isset($crew_data['type']) ? $crew_data['type'] : null;
}
}