@@ -93,7 +93,7 @@ public function bustCache($path, $filter)
93
93
*
94
94
* @return bool Returns true if the cache is warmed up
95
95
*/
96
- public function warmsUpCache (
96
+ public function warmUpCache (
97
97
string $ path ,
98
98
string $ filter ,
99
99
?string $ resolver = null ,
@@ -102,7 +102,7 @@ public function warmsUpCache(
102
102
$ warmedUp = false ;
103
103
104
104
foreach ($ this ->buildFilterPathContainers ($ path ) as $ filterPathContainer ) {
105
- if ($ this ->warmsUpCacheFilterPathContainer ($ filterPathContainer , $ filter , $ resolver , $ forced )) {
105
+ if ($ this ->warmUpCacheFilterPathContainer ($ filterPathContainer , $ filter , $ resolver , $ forced )) {
106
106
$ warmedUp = true ;
107
107
}
108
108
}
@@ -120,7 +120,7 @@ public function warmsUpCache(
120
120
public function getUrlOfFilteredImage ($ path , $ filter , $ resolver = null , bool $ webpSupported = false )
121
121
{
122
122
foreach ($ this ->buildFilterPathContainers ($ path ) as $ filterPathContainer ) {
123
- $ this ->warmsUpCacheFilterPathContainer ($ filterPathContainer , $ filter , $ resolver );
123
+ $ this ->warmUpCacheFilterPathContainer ($ filterPathContainer , $ filter , $ resolver );
124
124
}
125
125
126
126
return $ this ->resolveFilterPathContainer (new FilterPathContainer ($ path ), $ filter , $ resolver , $ webpSupported );
@@ -146,7 +146,7 @@ public function getUrlOfFilteredImageWithRuntimeFilters(
146
146
];
147
147
148
148
foreach ($ this ->buildFilterPathContainers ($ path , $ runtimePath , $ runtimeOptions ) as $ filterPathContainer ) {
149
- $ this ->warmsUpCacheFilterPathContainer ($ filterPathContainer , $ filter , $ resolver );
149
+ $ this ->warmUpCacheFilterPathContainer ($ filterPathContainer , $ filter , $ resolver );
150
150
}
151
151
152
152
return $ this ->resolveFilterPathContainer (
@@ -194,7 +194,7 @@ private function resolveFilterPathContainer(
194
194
*
195
195
* @return bool Returns true if the cache is warmed up
196
196
*/
197
- private function warmsUpCacheFilterPathContainer (
197
+ private function warmUpCacheFilterPathContainer (
198
198
FilterPathContainer $ filterPathContainer ,
199
199
string $ filter ,
200
200
?string $ resolver = null ,
0 commit comments