getInfo() 공개 메소드

Get extra information about the artist from Last.fm.
public getInfo ( ) : array | false
리턴 array | false
예제 #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());
 }