/
home
/
techb158
/
immovalet.com
/
platform
/
packages
/
page
/
src
/
Repositories
/
Interfaces
/
/home/techb158/immovalet.com/platform/packages/page/src/Repositories/Interfaces
mkdir
upload
Name
Size
Mode
Actions
PageInterface.php
734
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/platform/packages/page/src/Repositories/Interfaces/PageInterface.php
(734B)
<?php namespace Botble\Page\Repositories\Interfaces; use Botble\Support\Repositories\Interfaces\RepositoryInterface; interface PageInterface extends RepositoryInterface { /** * @return mixed */ public function getDataSiteMap(); /** * @param int $limit */ public function getFeaturedPages($limit); /** * @param array $array * @param array $select * @return mixed */ public function whereIn($array, $select = []); /** * @param $query * @param int $limit * @return mixed */ public function getSearch($query, $limit = 10); /** * @param bool $active * @return mixed */ public function getAllPages($active = true); }
Save