public static function searchMovie($title) { return MovieDataService::searchMovie($title); }
/** * Execute the console command. * * @return mixed */ public function handle() { $this->comment('Start refreshing top ten'); MovieDataService::getTopTen(); $this->comment('Refreshing done!'); }
public function refresh() { MovieDataService::getTopTen(); }