22
33namespace CustomerGauge \Session ;
44
5+ use BadMethodCallException ;
56use CustomerGauge \Session \Contracts \UserFactory ;
67use Illuminate \Contracts \Auth \Authenticatable as LaravelAuthenticatable ;
78use Illuminate \Contracts \Auth \UserProvider ;
@@ -20,18 +21,48 @@ public function retrieveByCredentials(array $session)
2021 return $ this ->factory ->make ($ session );
2122 }
2223
23- /** @phpstan-ignore-next-line */
24+ /**
25+ * @inheritdoc
26+ * @phpstan ignore
27+ */
28+ public function validateCredentials (LaravelAuthenticatable $ user , array $ credentials )
29+ {
30+ throw new BadMethodCallException ('Not implemented ' );
31+ }
32+
33+ /**
34+ * @inheritdoc
35+ * @phpstan ignore
36+ */
2437 public function retrieveById ($ identifier )
25- {}
38+ {
39+ throw new BadMethodCallException ('Not implemented ' );
40+ }
2641
27- /** @phpstan-ignore-next-line */
42+ /**
43+ * @inheritdoc
44+ * @phpstan ignore
45+ */
2846 public function retrieveByToken ($ identifier , $ token )
29- {}
47+ {
48+ throw new BadMethodCallException ('Not implemented ' );
49+ }
3050
51+ /**
52+ * @inheritdoc
53+ * @phpstan ignore
54+ */
3155 public function updateRememberToken (LaravelAuthenticatable $ user , $ token )
32- {}
56+ {
57+ throw new BadMethodCallException ('Not implemented ' );
58+ }
3359
34- /** @phpstan-ignore-next-line */
35- public function validateCredentials (LaravelAuthenticatable $ user , array $ credentials )
36- {}
37- }
60+ /**
61+ * @inheritdoc
62+ * @phpstan ignore
63+ */
64+ public function rehashPasswordIfRequired (LaravelAuthenticatable $ user , array $ credentials , bool $ force = false )
65+ {
66+ throw new BadMethodCallException ('Not implemented ' );
67+ }
68+ }
0 commit comments