We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b05772 commit 3f15d84Copy full SHA for 3f15d84
src/Tag/Content.php
@@ -53,6 +53,20 @@ public function shift(int $offset, bool $ltrim = true): void
53
$this->offset += $size - \strlen($this->value);
54
}
55
56
+ /**
57
+ * @param callable(self):bool $context
58
+ */
59
+ public function transactional(callable $context): void
60
+ {
61
+ $offset = $this->offset;
62
+ $value = $this->value;
63
+
64
+ if ($context($this) === false) {
65
+ $this->offset = $offset;
66
+ $this->value = $value;
67
+ }
68
69
70
public function getTagException(string $message, \Throwable $previous = null): InvalidTagException
71
{
72
return new InvalidTagException(
0 commit comments