????

Your IP : 216.73.216.79


Current Path : /home/arabianr/www/wp-content/plugins/simplybook/app/Services/Entities/
Upload File :
Current File : /home/arabianr/www/wp-content/plugins/simplybook/app/Services/Entities/StatisticsService.php

<?php

namespace SimplyBook\Services\Entities;

class StatisticsService extends AbstractEntityService
{
    /**
     * @inheritDoc
     */
    protected string $cachePrefix = 'simplybook';

    /**
     * @inheritDoc
     */
    protected string $identifier = 'statistics';

    /**
     * Fetch the statistic data from the SimplyBook API
     * @return array The statistics
     */
    public function fetch(): array
    {
        return $this->client->get_statistics();
    }
}