<?php

namespace UserFrosting;

class MySqlStore extends MySqlDatabaseObject implements StoreObjectInterface {

    public function __construct($properties, $id = null) {
        $this->_table = static::getTable('group');
        parent::__construct($properties, $id);
    }

}

