Requiring then loading class

class My_Main_Stuff {

    public function get_table( $table_arguments ) {
        require_once 'includes/table.class.php';
        $table = new My_Table_Stuff( $table_arguments );

        return $table;
    }
}