@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | * @param string $client_id Client Id |
| 49 | 49 | * @param array $credentials Credentials |
| 50 | 50 | * |
| 51 | - * @return Response |
|
| 51 | + * @return string |
|
| 52 | 52 | */ |
| 53 | 53 | public function attemptLogin($client_id, array $credentials) |
| 54 | 54 | { |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | * @param string $client_id Client Id |
| 62 | 62 | * @param array $credentials Credentials |
| 63 | 63 | * |
| 64 | - * @return Response |
|
| 64 | + * @return string |
|
| 65 | 65 | */ |
| 66 | 66 | public function attemptRefresh($client_id, array $credentials) |
| 67 | 67 | { |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * @param string $client_id String Client Id |
| 76 | 76 | * @param array $data Array Data |
| 77 | 77 | * |
| 78 | - * @return Response |
|
| 78 | + * @return string |
|
| 79 | 79 | */ |
| 80 | 80 | private function proxy($grantType, $client_id, array $data = array()) |
| 81 | 81 | { |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | * |
| 99 | 99 | * @param string $cmd String Cmd |
| 100 | 100 | * |
| 101 | - * @return this |
|
| 101 | + * @return string |
|
| 102 | 102 | */ |
| 103 | 103 | public function pid($cmd) |
| 104 | 104 | { |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | /** |
| 109 | 109 | * Get Pid |
| 110 | 110 | * |
| 111 | - * @return int |
|
| 111 | + * @return string |
|
| 112 | 112 | */ |
| 113 | 113 | public function getPid() |
| 114 | 114 | { |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | /** |
| 119 | 119 | * Gets the value of log. |
| 120 | 120 | * |
| 121 | - * @return mixed |
|
| 121 | + * @return string |
|
| 122 | 122 | */ |
| 123 | 123 | public function getLog() |
| 124 | 124 | { |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | /** |
| 129 | 129 | * Sets the value of log. |
| 130 | 130 | * |
| 131 | - * @param mixed $log Mixed Log |
|
| 131 | + * @param string|null $log Mixed Log |
|
| 132 | 132 | * |
| 133 | 133 | * @return self |
| 134 | 134 | */ |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | /** |
| 147 | 147 | * Gets the value of error |
| 148 | 148 | * |
| 149 | - * @return mixed |
|
| 149 | + * @return string |
|
| 150 | 150 | */ |
| 151 | 151 | public function getErrors() |
| 152 | 152 | { |
@@ -2,7 +2,6 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace NwLaravel\Resultset; |
| 4 | 4 | |
| 5 | -use RuntimeException; |
|
| 6 | 5 | use Illuminate\Database\Eloquent\Builder as EloquentBuilder; |
| 7 | 6 | |
| 8 | 7 | /** |