wpml-tp-job-factory.php 181 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php class WPML_TP_Job_Factory { /** * @param stdClass $job * * @return WPML_TP_Job */ public function create( stdClass $job ) { return new WPML_TP_Job( $job ); } }