Created
September 16, 2019 03:33
-
-
Save aungwinthant/1ad5c7ee776f3b420cb177fc8f7819d8 to your computer and use it in GitHub Desktop.
Interface for CategoryRepository
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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