<?php namespace App\Interfaces; use Illuminate\Database\Eloquent\Builder; interface UserFilter { function getIdArr(?int $userId):array; function getQuery(?int $userId):Builder; }