php ignore errors code example
Example 1: e_notice in php
// Reporting E_NOTICE
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
Example 2: @ in php to supress error in php
Retrofit retrofit = new Retrofit.Builder() .baseUrl(https://api.themoviedb.org/3/) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJava2CallAdapterFactory.create()) .build();