Removes the Tweets which does not be mentioned the specified user from Tuitter_Tweets.
Tuitter::load('Filter/Mentioned.php'); $filter = new Tuitter_Filter_Mentioned('user1', 'user2');$tl = $tuitter->getHomeTL(); $tl->filter($filter); // Left only Tweets which contain '@user1' or '@user2'. foreach($tl as $tweet){ // : }