@@ -65,7 +65,7 @@ |
||
65 | 65 | * |
66 | 66 | * @param array $columns |
67 | 67 | * |
68 | - * @return \Illuminate\Database\Eloquent\Collection|static[] |
|
68 | + * @return \Illuminate\Database\Eloquent\Model[] |
|
69 | 69 | * |
70 | 70 | * @throws \Exception |
71 | 71 | */ |
@@ -119,13 +119,13 @@ |
||
119 | 119 | return $column; |
120 | 120 | } |
121 | 121 | |
122 | - /** |
|
123 | - * Set a given attribute on the model. |
|
124 | - * |
|
125 | - * @param string $key |
|
126 | - * @param mixed $value |
|
127 | - * @return $this |
|
128 | - */ |
|
122 | + /** |
|
123 | + * Set a given attribute on the model. |
|
124 | + * |
|
125 | + * @param string $key |
|
126 | + * @param mixed $value |
|
127 | + * @return $this |
|
128 | + */ |
|
129 | 129 | public function setAttribute($key, $value) |
130 | 130 | { |
131 | 131 | // First we will check for the presence of a mutator for the set operation |
@@ -345,11 +345,11 @@ |
||
345 | 345 | /** |
346 | 346 | * Execute an CQL statement and return the boolean result. |
347 | 347 | * |
348 | - * @param $query |
|
348 | + * @param string $query |
|
349 | 349 | * @param array $bindings |
350 | 350 | * @param array $customOptions |
351 | - * @param array $defaultFailed |
|
352 | - * @param null $defaultSuccess |
|
351 | + * @param integer $defaultFailed |
|
352 | + * @param integer $defaultSuccess |
|
353 | 353 | * |
354 | 354 | * @return mixed |
355 | 355 | */ |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Cassandra; |
6 | 6 | use Cassandra\BatchStatement; |
7 | -use Closure; |
|
8 | 7 | |
9 | 8 | class Connection extends \Illuminate\Database\Connection |
10 | 9 | { |