@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | "genealabs:laravel-model-caching:testing:{$this->testingSqlitePath}testing.sqlite:genealabslaravelmodelcachingtestsfixturesbook", |
61 | 61 | ]; |
62 | 62 | $results = (new Book) |
63 | - ->whereNotIn("id", function ($query) { |
|
63 | + ->whereNotIn("id", function($query) { |
|
64 | 64 | $query->select("id")->from("authors")->where("id", "<", 10); |
65 | 65 | }) |
66 | 66 | ->get(); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | ->tags($tags) |
70 | 70 | ->get($key)['value']; |
71 | 71 | $liveResults = (new UncachedBook) |
72 | - ->whereNotIn("id", function ($query) { |
|
72 | + ->whereNotIn("id", function($query) { |
|
73 | 73 | $query->select("id")->from("authors")->where("id", "<", 10); |
74 | 74 | }) |
75 | 75 | ->get(); |
@@ -85,14 +85,14 @@ |
||
85 | 85 | $tags = ["genealabs:laravel-model-caching:testing:{$this->testingSqlitePath}testing.sqlite:genealabslaravelmodelcachingtestsfixturesauthor"]; |
86 | 86 | |
87 | 87 | $authors = (new Author) |
88 | - ->whereIn('id', [1,2,3,4,5]) |
|
88 | + ->whereIn('id', [1, 2, 3, 4, 5]) |
|
89 | 89 | ->whereBetween('id', [1, 99999]) |
90 | 90 | ->get(); |
91 | 91 | $cachedResults = $this->cache() |
92 | 92 | ->tags($tags) |
93 | 93 | ->get($key)['value']; |
94 | 94 | $liveResults = (new UncachedAuthor) |
95 | - ->whereIn('id', [1,2,3,4,5]) |
|
95 | + ->whereIn('id', [1, 2, 3, 4, 5]) |
|
96 | 96 | ->whereBetween('id', [1, 99999]) |
97 | 97 | ->get(); |
98 | 98 |
@@ -21,12 +21,12 @@ |
||
21 | 21 | public function testNestedWhereNullClauses() |
22 | 22 | { |
23 | 23 | $books = (new Book) |
24 | - ->where(function ($query) { |
|
24 | + ->where(function($query) { |
|
25 | 25 | $query->whereNull("description"); |
26 | 26 | }) |
27 | 27 | ->get(); |
28 | 28 | $uncachedBooks = (new UncachedBook) |
29 | - ->where(function ($query) { |
|
29 | + ->where(function($query) { |
|
30 | 30 | $query->whereNull("description"); |
31 | 31 | }) |
32 | 32 | ->get(); |
@@ -24,7 +24,7 @@ |
||
24 | 24 | { |
25 | 25 | parent::setUp(); |
26 | 26 | |
27 | - $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); |
|
27 | + $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); |
|
28 | 28 | factory(Author::class, 10)->create(); |
29 | 29 | } |
30 | 30 |
@@ -35,7 +35,7 @@ |
||
35 | 35 | |
36 | 36 | public function testWhereClauseWorksWithDateTimeObject() |
37 | 37 | { |
38 | - $dateTime = (new DateTime('@' . time())) |
|
38 | + $dateTime = (new DateTime('@'.time())) |
|
39 | 39 | ->sub(new DateInterval("P10Y")); |
40 | 40 | $dateTimeString = $dateTime->format("Y-m-d-H-i-s"); |
41 | 41 | $key = sha1("genealabs:laravel-model-caching:testing:{$this->testingSqlitePath}testing.sqlite:books:genealabslaravelmodelcachingtestsfixturesbook-publish_at_>_{$dateTimeString}"); |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | $this->actingAs($user); |
112 | 112 | $authorsA = (new AuthorBeginsWithScoped) |
113 | 113 | ->all() |
114 | - ->map(function ($author) { |
|
114 | + ->map(function($author) { |
|
115 | 115 | return (new Str)->substr($author->name, 0, 1); |
116 | 116 | }) |
117 | 117 | ->unique(); |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | $this->actingAs($user); |
120 | 120 | $authorsB = (new AuthorBeginsWithScoped) |
121 | 121 | ->all() |
122 | - ->map(function ($author) { |
|
122 | + ->map(function($author) { |
|
123 | 123 | return (new Str)->substr($author->name, 0, 1); |
124 | 124 | }) |
125 | 125 | ->unique(); |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | $this->actingAs($user); |
138 | 138 | $authorsA = (new AuthorBeginsWithScoped) |
139 | 139 | ->get() |
140 | - ->map(function ($author) { |
|
140 | + ->map(function($author) { |
|
141 | 141 | return (new Str)->substr($author->name, 0, 1); |
142 | 142 | }) |
143 | 143 | ->unique(); |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | $this->actingAs($user); |
146 | 146 | $authorsB = (new AuthorBeginsWithScoped) |
147 | 147 | ->get() |
148 | - ->map(function ($author) { |
|
148 | + ->map(function($author) { |
|
149 | 149 | return (new Str)->substr($author->name, 0, 1); |
150 | 150 | }) |
151 | 151 | ->unique(); |
@@ -161,13 +161,13 @@ discard block |
||
161 | 161 | $first = "A"; |
162 | 162 | $second = "B"; |
163 | 163 | $authors1 = (new Author) |
164 | - ->with(['books' => static function (HasMany $model) use ($first) { |
|
164 | + ->with(['books' => static function(HasMany $model) use ($first) { |
|
165 | 165 | $model->startsWith($first); |
166 | 166 | }]) |
167 | 167 | ->get(); |
168 | 168 | $authors2 = (new Author) |
169 | 169 | ->disableModelCaching() |
170 | - ->with(['books' => static function (HasMany $model) use ($second) { |
|
170 | + ->with(['books' => static function(HasMany $model) use ($second) { |
|
171 | 171 | $model->startsWith($second); |
172 | 172 | }]) |
173 | 173 | ->get(); |
@@ -19,7 +19,7 @@ |
||
19 | 19 | /** @var Collection $publishers */ |
20 | 20 | $publishers = factory(UncachedPublisher::class, 5)->create(); |
21 | 21 | |
22 | - $publishers->each(function (UncachedPublisher $publisher) { |
|
22 | + $publishers->each(function(UncachedPublisher $publisher) { |
|
23 | 23 | factory(UncachedBook::class, 2)->create(['publisher_id' => $publisher->id]); |
24 | 24 | }); |
25 | 25 |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | $authors = (new Author) |
14 | 14 | ->where("id", 1) |
15 | 15 | ->with([ |
16 | - 'books' => function ($query) { |
|
16 | + 'books' => function($query) { |
|
17 | 17 | $query->where("id", "<", 100) |
18 | 18 | ->offset(5) |
19 | 19 | ->limit(1); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | ]) |
22 | 22 | ->first(); |
23 | 23 | $uncachedAuthor = (new UncachedAuthor)->with([ |
24 | - 'books' => function ($query) { |
|
24 | + 'books' => function($query) { |
|
25 | 25 | $query->where("id", "<", 100) |
26 | 26 | ->offset(5) |
27 | 27 | ->limit(1); |
@@ -38,13 +38,13 @@ discard block |
||
38 | 38 | $author = (new Author) |
39 | 39 | ->where("id", 1) |
40 | 40 | ->with([ |
41 | - 'books' => function ($query) { |
|
41 | + 'books' => function($query) { |
|
42 | 42 | $query->where("id", "<", 100); |
43 | 43 | } |
44 | 44 | ]) |
45 | 45 | ->first(); |
46 | 46 | $uncachedAuthor = (new UncachedAuthor)->with([ |
47 | - 'books' => function ($query) { |
|
47 | + 'books' => function($query) { |
|
48 | 48 | $query->where("id", "<", 100); |
49 | 49 | }, |
50 | 50 | ]) |
@@ -60,13 +60,13 @@ discard block |
||
60 | 60 | $author = (new Author) |
61 | 61 | ->where("id", 1) |
62 | 62 | ->with([ |
63 | - 'books.publisher' => function ($query) { |
|
63 | + 'books.publisher' => function($query) { |
|
64 | 64 | $query->where("id", "<", 100); |
65 | 65 | } |
66 | 66 | ]) |
67 | 67 | ->first(); |
68 | 68 | $uncachedAuthor = (new UncachedAuthor)->with([ |
69 | - 'books.publisher' => function ($query) { |
|
69 | + 'books.publisher' => function($query) { |
|
70 | 70 | $query->where("id", "<", 100); |
71 | 71 | }, |
72 | 72 | ]) |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | ]; |
15 | 15 | |
16 | 16 | $books = (new Book) |
17 | - ->when(true, function ($query) { |
|
17 | + ->when(true, function($query) { |
|
18 | 18 | $query->where("id", "<", 5); |
19 | 19 | }) |
20 | 20 | ->get(); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | ->tags($tags) |
24 | 24 | ->get($key)['value']; |
25 | 25 | $liveResults = (new UncachedBook) |
26 | - ->when(true, function ($query) { |
|
26 | + ->when(true, function($query) { |
|
27 | 27 | $query->where("id", "<", 5); |
28 | 28 | }) |
29 | 29 | ->get(); |