Skip to content

Commit 3f15d84

Browse files
committed
Add transactional content method
1 parent 7b05772 commit 3f15d84

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/Tag/Content.php

+14
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,20 @@ public function shift(int $offset, bool $ltrim = true): void
5353
$this->offset += $size - \strlen($this->value);
5454
}
5555

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+
5670
public function getTagException(string $message, \Throwable $previous = null): InvalidTagException
5771
{
5872
return new InvalidTagException(

0 commit comments

Comments
 (0)