@@ -4,20 +4,20 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface BindingRegistrar |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Add a new route parameter binder. |
|
| 9 | - * |
|
| 10 | - * @param string $key |
|
| 11 | - * @param string|callable $binder |
|
| 12 | - * @return void |
|
| 13 | - */ |
|
| 14 | - public function bind($key, $binder); |
|
| 7 | + /** |
|
| 8 | + * Add a new route parameter binder. |
|
| 9 | + * |
|
| 10 | + * @param string $key |
|
| 11 | + * @param string|callable $binder |
|
| 12 | + * @return void |
|
| 13 | + */ |
|
| 14 | + public function bind($key, $binder); |
|
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * Get the binding callback for a given binding. |
|
| 18 | - * |
|
| 19 | - * @param string $key |
|
| 20 | - * @return \Closure |
|
| 21 | - */ |
|
| 22 | - public function getBindingCallback($key); |
|
| 16 | + /** |
|
| 17 | + * Get the binding callback for a given binding. |
|
| 18 | + * |
|
| 19 | + * @param string $key |
|
| 20 | + * @return \Closure |
|
| 21 | + */ |
|
| 22 | + public function getBindingCallback($key); |
|
| 23 | 23 | } |
@@ -4,21 +4,21 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface SupportsBasicAuth |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Attempt to authenticate using HTTP Basic Auth. |
|
| 9 | - * |
|
| 10 | - * @param string $field |
|
| 11 | - * @param array $extraConditions |
|
| 12 | - * @return \Symfony\Component\HttpFoundation\Response|null |
|
| 13 | - */ |
|
| 14 | - public function basic($field = 'email', $extraConditions = []); |
|
| 7 | + /** |
|
| 8 | + * Attempt to authenticate using HTTP Basic Auth. |
|
| 9 | + * |
|
| 10 | + * @param string $field |
|
| 11 | + * @param array $extraConditions |
|
| 12 | + * @return \Symfony\Component\HttpFoundation\Response|null |
|
| 13 | + */ |
|
| 14 | + public function basic($field = 'email', $extraConditions = []); |
|
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * Perform a stateless HTTP Basic login attempt. |
|
| 18 | - * |
|
| 19 | - * @param string $field |
|
| 20 | - * @param array $extraConditions |
|
| 21 | - * @return \Symfony\Component\HttpFoundation\Response|null |
|
| 22 | - */ |
|
| 23 | - public function onceBasic($field = 'email', $extraConditions = []); |
|
| 16 | + /** |
|
| 17 | + * Perform a stateless HTTP Basic login attempt. |
|
| 18 | + * |
|
| 19 | + * @param string $field |
|
| 20 | + * @param array $extraConditions |
|
| 21 | + * @return \Symfony\Component\HttpFoundation\Response|null |
|
| 22 | + */ |
|
| 23 | + public function onceBasic($field = 'email', $extraConditions = []); |
|
| 24 | 24 | } |
@@ -4,46 +4,46 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface Authenticatable |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Get the name of the unique identifier for the user. |
|
| 9 | - * |
|
| 10 | - * @return string |
|
| 11 | - */ |
|
| 12 | - public function getAuthIdentifierName(); |
|
| 7 | + /** |
|
| 8 | + * Get the name of the unique identifier for the user. |
|
| 9 | + * |
|
| 10 | + * @return string |
|
| 11 | + */ |
|
| 12 | + public function getAuthIdentifierName(); |
|
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Get the unique identifier for the user. |
|
| 16 | - * |
|
| 17 | - * @return mixed |
|
| 18 | - */ |
|
| 19 | - public function getAuthIdentifier(); |
|
| 14 | + /** |
|
| 15 | + * Get the unique identifier for the user. |
|
| 16 | + * |
|
| 17 | + * @return mixed |
|
| 18 | + */ |
|
| 19 | + public function getAuthIdentifier(); |
|
| 20 | 20 | |
| 21 | - /** |
|
| 22 | - * Get the password for the user. |
|
| 23 | - * |
|
| 24 | - * @return string |
|
| 25 | - */ |
|
| 26 | - public function getAuthPassword(); |
|
| 21 | + /** |
|
| 22 | + * Get the password for the user. |
|
| 23 | + * |
|
| 24 | + * @return string |
|
| 25 | + */ |
|
| 26 | + public function getAuthPassword(); |
|
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * Get the token value for the "remember me" session. |
|
| 30 | - * |
|
| 31 | - * @return string |
|
| 32 | - */ |
|
| 33 | - public function getRememberToken(); |
|
| 28 | + /** |
|
| 29 | + * Get the token value for the "remember me" session. |
|
| 30 | + * |
|
| 31 | + * @return string |
|
| 32 | + */ |
|
| 33 | + public function getRememberToken(); |
|
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * Set the token value for the "remember me" session. |
|
| 37 | - * |
|
| 38 | - * @param string $value |
|
| 39 | - * @return void |
|
| 40 | - */ |
|
| 41 | - public function setRememberToken($value); |
|
| 35 | + /** |
|
| 36 | + * Set the token value for the "remember me" session. |
|
| 37 | + * |
|
| 38 | + * @param string $value |
|
| 39 | + * @return void |
|
| 40 | + */ |
|
| 41 | + public function setRememberToken($value); |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Get the column name for the "remember me" token. |
|
| 45 | - * |
|
| 46 | - * @return string |
|
| 47 | - */ |
|
| 48 | - public function getRememberTokenName(); |
|
| 43 | + /** |
|
| 44 | + * Get the column name for the "remember me" token. |
|
| 45 | + * |
|
| 46 | + * @return string |
|
| 47 | + */ |
|
| 48 | + public function getRememberTokenName(); |
|
| 49 | 49 | } |
@@ -4,18 +4,18 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface CanResetPassword |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Get the e-mail address where password reset links are sent. |
|
| 9 | - * |
|
| 10 | - * @return string |
|
| 11 | - */ |
|
| 12 | - public function getEmailForPasswordReset(); |
|
| 7 | + /** |
|
| 8 | + * Get the e-mail address where password reset links are sent. |
|
| 9 | + * |
|
| 10 | + * @return string |
|
| 11 | + */ |
|
| 12 | + public function getEmailForPasswordReset(); |
|
| 13 | 13 | |
| 14 | - /** |
|
| 15 | - * Send the password reset notification. |
|
| 16 | - * |
|
| 17 | - * @param string $token |
|
| 18 | - * @return void |
|
| 19 | - */ |
|
| 20 | - public function sendPasswordResetNotification($token); |
|
| 14 | + /** |
|
| 15 | + * Send the password reset notification. |
|
| 16 | + * |
|
| 17 | + * @param string $token |
|
| 18 | + * @return void |
|
| 19 | + */ |
|
| 20 | + public function sendPasswordResetNotification($token); |
|
| 21 | 21 | } |
@@ -4,11 +4,11 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface PasswordBrokerFactory |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Get a password broker instance by name. |
|
| 9 | - * |
|
| 10 | - * @param string|null $name |
|
| 11 | - * @return mixed |
|
| 12 | - */ |
|
| 13 | - public function broker($name = null); |
|
| 7 | + /** |
|
| 8 | + * Get a password broker instance by name. |
|
| 9 | + * |
|
| 10 | + * @param string|null $name |
|
| 11 | + * @return mixed |
|
| 12 | + */ |
|
| 13 | + public function broker($name = null); |
|
| 14 | 14 | } |
@@ -4,11 +4,11 @@ |
||
| 4 | 4 | |
| 5 | 5 | interface Cloud extends Filesystem |
| 6 | 6 | { |
| 7 | - /** |
|
| 8 | - * Get the URL for the file at the given path. |
|
| 9 | - * |
|
| 10 | - * @param string $path |
|
| 11 | - * @return string |
|
| 12 | - */ |
|
| 13 | - public function url($path); |
|
| 7 | + /** |
|
| 8 | + * Get the URL for the file at the given path. |
|
| 9 | + * |
|
| 10 | + * @param string $path |
|
| 11 | + * @return string |
|
| 12 | + */ |
|
| 13 | + public function url($path); |
|
| 14 | 14 | } |
@@ -6,5 +6,5 @@ |
||
| 6 | 6 | |
| 7 | 7 | class FileNotFoundException extends Exception |
| 8 | 8 | { |
| 9 | - // |
|
| 9 | + // |
|
| 10 | 10 | } |
@@ -6,5 +6,5 @@ |
||
| 6 | 6 | |
| 7 | 7 | class EncryptException extends RuntimeException |
| 8 | 8 | { |
| 9 | - // |
|
| 9 | + // |
|
| 10 | 10 | } |
@@ -6,5 +6,5 @@ |
||
| 6 | 6 | |
| 7 | 7 | class DecryptException extends RuntimeException |
| 8 | 8 | { |
| 9 | - // |
|
| 9 | + // |
|
| 10 | 10 | } |