We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8206fe commit 62c3e81Copy full SHA for 62c3e81
src/PhpPresentation/PresentationProperties.php
@@ -24,21 +24,23 @@ class PresentationProperties
24
/*
25
* @var boolean
26
*/
27
- protected $isLoopContinuouslyUntilEsc = false;
+ protected $isLoopUntilEsc = false;
28
+
29
/**
30
* @return bool
31
32
public function isLoopContinuouslyUntilEsc()
33
{
- return $this->isLoopContinuouslyUntilEsc;
34
+ return $this->isLoopUntilEsc;
35
}
36
37
38
* @param bool $value
39
* @return \PhpOffice\PhpPresentation\PresentationProperties
40
41
public function setLoopContinuouslyUntilEsc($value = false)
42
- $this->isLoopContinuouslyUntilEsc = $value;
43
+ $this->isLoopUntilEsc = $value;
44
return $this;
45
46
0 commit comments