ZF-12147: Zend_Service_Twitter_Search::search does not support 'include_entities' parameter

Description

In order to include entity information a user needs to be able to pass 'include_entities=1' as a paramter with twitter search. This is not supported at present

Comments

Code to add at line 146 of Zend/Service/Twitter/Search:

            case 'include_entities':
                if (true == $param) {
                    $_query[$key] = 1;
                }
                break;

I will do this as soon as I get some time to add myself unless anyone gets there first.