Skip to content

Commit 998b3a1

Browse files
committed
Fix a regression caused in #39
1 parent c321081 commit 998b3a1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/Caching/Attribute/Send304IfNotModified.php

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ public function __construct(...$values)
2828
\E_USER_DEPRECATED
2929
);
3030

31+
if (!$values) {
32+
throw new \InvalidArgumentException(sprintf('The %s attribute needs at least one criterion', __CLASS__));
33+
}
34+
3135
$this->lastmodHelper = new LastmodHelper();
3236

3337
foreach ($values as $key => $value) {

src/Caching/EventListener.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected function findAttribute($callback): ?Attribute\Send304IfNotModified
109109
$attributes = $method->getAttributes(\Webfactory\Bundle\WfdMetaBundle\Caching\Attribute\Send304IfNotModified::class);
110110

111111
if ($attributes) {
112-
return $attributes[0];
112+
return $attributes[0]->newInstance();
113113
}
114114
}
115115

0 commit comments

Comments
 (0)