We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb05726 commit 51d6e9fCopy full SHA for 51d6e9f
src/Contracts/User.php
@@ -0,0 +1,9 @@
1
+<?php
2
+
3
+namespace Jaspaul\LaravelRollout\Contracts;
4
5
+use Opensoft\Rollout\RolloutUserInterface;
6
7
+interface User extends RolloutUserInterface
8
+{
9
+}
src/Contracts/UserProvider.php
@@ -0,0 +1,17 @@
+interface UserProvider
+ /**
+ * Finds and returns rollout users.
+ *
10
+ * @param mixed $id
11
+ * A unique identifier for the rollout user in the system.
12
13
+ * @return \Jaspaul\LaravelRollout\Contracts\User
14
+ * A rollout user.
15
+ */
16
+ public function findByRolloutIdentifier($id);
17
0 commit comments