for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wordlift\Vocabulary\Data\Entity;
/**
* @since 3.30.0
* @author Naveen Muthusamy <[email protected]>
*/
class Entity_Factory {
public static function get_instance( $term_id ) {
return new Default_Entity( $term_id, new Legacy_Entity( $term_id ) );
}