Strimoid/Strimoid

View on GitHub
app/Contracts/Repositories/ContentRepository.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Strimoid\Contracts\Repositories;

interface ContentRepository
{
    public function getContentsFrom($from, $sortBy = 'created_at', $perPage = null);

    public function getPopularContentsFrom($from, $sortBy = 'created_at', $perPage = null);

    public function getNewContentsFrom($from, $sortBy = 'created_at', $perPage = null);
}