getInfo() public method

Get extra information about the artist from Last.fm.
public getInfo ( ) : array | false
return array | false
Exemplo n.º 1
0
 /**
  * Get extra information about an artist via Last.fm.
  *
  * @param Artist $artist
  *
  * @return \Illuminate\Http\JsonResponse
  */
 public function getInfo(Artist $artist)
 {
     return response()->json($artist->getInfo());
 }