getInfo() public méthode

Get extra information about the artist from Last.fm.
public getInfo ( ) : array | false
Résultat array | false
Exemple #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());
 }