Skip to content

Instantly share code, notes, and snippets.

@aungwinthant
Created September 16, 2019 03:33
Show Gist options
  • Save aungwinthant/1ad5c7ee776f3b420cb177fc8f7819d8 to your computer and use it in GitHub Desktop.
Save aungwinthant/1ad5c7ee776f3b420cb177fc8f7819d8 to your computer and use it in GitHub Desktop.
Interface for CategoryRepository
<?php
namespace App\Repositories;
interface CategoryRepositoryInterface{
public function list();
public function save(array $data);
public function update(array $data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment