Skip to content

Instantly share code, notes, and snippets.

@zabaala
Last active February 17, 2018 00:46
Show Gist options
  • Save zabaala/603a77f12048bafb9c085d4549a16adb to your computer and use it in GitHub Desktop.
Save zabaala/603a77f12048bafb9c085d4549a16adb to your computer and use it in GitHub Desktop.
<?php
//...
interface CouponRepositoryInterface
{
/**
* Get all coupons.
*
* @param null $filterableKeyword
* @param array $orders
* @return LengthAwarePaginator
*/
public function getAllCoupons(
$filterableKeyword = null,
array $orders = [
[
'column' => 'name',
'direction' => 'asc'
]
]
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment