WordPress Tags in class

Where are you getting these tags from? Typically, to get a list of tags attached to a post, you’d do:

$some_tags =  wp_get_post_tags( $post_id);

and then itterate through as such:

foreach($some_tags as $tag) {
do stuff 
}