class-wpml-st-plugin-string-scanner-factory.php 264 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 <?php class WPML_ST_Plugin_String_Scanner_Factory { /** @return WPML_Plugin_String_Scanner */ public function create() { $file_hashing = new WPML_ST_File_Hashing(); return new WPML_Plugin_String_Scanner( wpml_get_filesystem_direct(), $file_hashing ); } }