Skip to content

Commit d90bf8a

Browse files
author
Sebastien HEYD
committed
Fix styles for CI
1 parent 9b28f9c commit d90bf8a

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

src/AbstractWidget.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function cacheKey(array $params = [])
9292
}
9393

9494
/**
95-
* Cache tags to help flush all cache with the same tag(s)
95+
* Cache tags to help flush all cache with the same tag(s).
9696
*
9797
* @return array
9898
*/

src/Factories/JavascriptFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function getLoader($encryptParams = true)
4747
* Construct javascript code to reload the widget.
4848
*
4949
* @param float|int $timeout
50-
* @param bool $encryptParams
50+
* @param bool $encryptParams
5151
*
5252
* @return string
5353
*/

src/Factories/WidgetFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ protected function getContent()
6767
protected function getContentFromCache($args)
6868
{
6969
if ($cacheTime = (float) $this->getCacheTime()) {
70-
7170
return $this->app->cache($this->widget->cacheKey($args), $cacheTime, $this->widget->cacheTags(), function () {
7271
return $this->getContent();
7372
});

src/Misc/EncryptException.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@
66

77
class EncryptException extends Exception
88
{
9-
109
}

src/Misc/LaravelApplicationWrapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function cache($key, $minutes, $tags, Closure $callback)
3535
{
3636
$cache = $this->app->make('cache');
3737

38-
if(method_exists($cache->getStore(), 'tags')) {
38+
if (method_exists($cache->getStore(), 'tags')) {
3939
$cache = $cache->tags($tags);
4040
}
4141

0 commit comments

Comments
 (0)