d2d.emegrendeles.hu/app/Repositories/AddressRepositoryInterface.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

36 lines
512 B
PHP

<?php
namespace App\Repositories;
interface AddressRepositoryInterface
{
/**
* Get's a record by it's ID
*
* @param int
*/
public function get($id);
/**
* Get's all records.
*
* @return mixed
*/
public function all();
/**
* Deletes a record.
*
* @param int
*/
public function delete($id);
/**
* Updates a record.
*
* @param int
* @param array
*/
public function update($id, array $data);
}