PluginProbe
Booking for Appointments and Events Calendar – Amelia / 2.4.2
Booking for Appointments and Events Calendar – Amelia v2.4.2
2.4.10 2.4.9 2.4.8 2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 All 60 releases
ameliabooking / src / Domain / Repository / User / UserRepositoryInterface.php

UserRepositoryInterface.php in Booking for Appointments and Events Calendar – Amelia 2.4.2, at src/Domain/Repository/User/UserRepositoryInterface.php

29 lines 501 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace AmeliaBooking\Domain\Repository\User;
4
5 use AmeliaBooking\Domain\Repository\BaseRepositoryInterface;
6
7 /**
8 * Interface UserRepositoryInterface
9 *
10 * @package AmeliaBooking\Domain\Repository\User
11 */
12 interface UserRepositoryInterface extends BaseRepositoryInterface
13 {
14 /**
15 * @param int $id
16 *
17 * @return mixed
18 */
19 public function findByExternalId($id);
20
21
22 /**
23 * @param $type
24 *
25 * @return mixed
26 */
27 public function getAllByType($type);
28 }
29