File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to ` laravel-zoom ` will be documented in this file
4
4
5
+ ## 1.0.15 - 2019-08-02
6
+
7
+ Update $query_attributes to $queryAttributes to be in line
8
+
5
9
## 1.0.14 - 2019-07-28
6
10
7
11
Bug fix on issue with registrant relationship
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ abstract class Model
11
11
protected $ attributes = [];
12
12
protected $ createAttributes = [];
13
13
protected $ updateAttributes = [];
14
- protected $ query_attributes = [];
14
+ protected $ queryAttributes = [];
15
15
protected $ relationships = [];
16
16
protected $ queries = [];
17
17
protected $ methods = [];
@@ -289,7 +289,7 @@ public function save()
289
289
290
290
public function where ($ key , $ operator , $ value = '' )
291
291
{
292
- if (in_array ($ key , $ this ->query_attributes )) {
292
+ if (in_array ($ key , $ this ->queryAttributes )) {
293
293
if ($ value == '' ) {
294
294
$ value = $ operator ;
295
295
$ operator = '= ' ;
You can’t perform that action at this time.
0 commit comments