<?php

namespace Realestate\Neighbourhood;

use Realestate\Neighbourhood\Actions\SectionsActions;


class Neighbourhood
{
    /**
     * Return select options neighbourhood for the module.
     *
     * @param string $module
     * @param array $request
     *
     * @return array
     */
    public function options($module = 'neighbourhood', $request = []) :array
    {
        if ($module == 'neighbourhood') {
            return NeighbourhoodActions::run('options', $request);
        }

    }
}