mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
10 lines
257 B
PHP
10 lines
257 B
PHP
<?php namespace Visiosoft\ProfileModule\Adress\Contract;
|
|
|
|
use Anomaly\Streams\Platform\Entry\Contract\EntryRepositoryInterface;
|
|
|
|
interface AdressRepositoryInterface extends EntryRepositoryInterface
|
|
{
|
|
|
|
public function getUserAddresses($userId = null);
|
|
}
|