namespace User\Service;

use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\ServiceManager\ServiceManager;
use User\Service\GroupService;

class GroupServiceFactory implements FactoryInterface
{

    /**
     * Create service
     *
     * @param ServiceLocatorInterface|ServiceManager $serviceLocator
     * @return GroupService
     */
    public function createService(ServiceLocatorInterface $serviceLocator)
    {
        return new GroupService($serviceLocator);
    }


}
