1 | <?php |
||
13 | abstract class AbstractProvider extends BaseProvider implements ProviderInterface |
||
14 | { |
||
15 | use ConfigTrait; |
||
16 | |||
17 | /** |
||
18 | * Indicates if the session state should be utilized. |
||
19 | * |
||
20 | * @var bool |
||
21 | */ |
||
22 | protected $stateless = true; |
||
23 | |||
24 | /** |
||
25 | * @var array |
||
26 | */ |
||
27 | protected $credentialsResponseBody; |
||
28 | |||
29 | /** |
||
30 | * @param string $providerName |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | public static function serviceContainerKey($providerName) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function user() |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function userFromTokenAndSecret($token, $secret) |
||
84 | |||
85 | /** |
||
86 | * Redirect the user to the authentication page for the provider. |
||
87 | * |
||
88 | * @return RedirectResponse |
||
89 | */ |
||
90 | public function redirect() |
||
103 | |||
104 | /** |
||
105 | * Returns temporary credentials for stateless auth. |
||
106 | * |
||
107 | * @return array |
||
108 | */ |
||
109 | public function getTemporaryCredentials() |
||
118 | |||
119 | /** |
||
120 | * Indicates that the provider should operate as stateless. |
||
121 | * |
||
122 | * @param mixed $stateless |
||
123 | * |
||
124 | * @return $this |
||
125 | */ |
||
126 | public function stateless($stateless = true) |
||
132 | |||
133 | /** |
||
134 | * Set the scopes of the requested access. |
||
135 | * |
||
136 | * @param array $scopes |
||
137 | * |
||
138 | * @return $this |
||
139 | */ |
||
140 | public function scopes(array $scopes) |
||
146 | |||
147 | /** |
||
148 | * Set the custom parameters of the request. |
||
149 | * |
||
150 | * @param array $parameters |
||
151 | * |
||
152 | * @return $this |
||
153 | */ |
||
154 | public function with(array $parameters) |
||
160 | |||
161 | /** |
||
162 | * @param Config $config |
||
163 | * |
||
164 | * @return $this |
||
165 | */ |
||
166 | public function setConfig(Config $config) |
||
172 | |||
173 | /** |
||
174 | * Get the token credentials for the request. |
||
175 | * |
||
176 | * @return \League\OAuth1\Client\Credentials\TokenCredentials |
||
177 | */ |
||
178 | protected function getToken() |
||
193 | |||
194 | /** |
||
195 | * Determine if the provider is operating as stateless. |
||
196 | * |
||
197 | * @return bool |
||
198 | */ |
||
199 | protected function isStateless() |
||
207 | } |
||
208 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.