Skip to content

Commit 62c3e81

Browse files
committed
#154 : Allow Loop Continuously until Esc (PHPMd fixes)
1 parent d8206fe commit 62c3e81

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/PhpPresentation/PresentationProperties.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,23 @@ class PresentationProperties
2424
/*
2525
* @var boolean
2626
*/
27-
protected $isLoopContinuouslyUntilEsc = false;
27+
protected $isLoopUntilEsc = false;
28+
2829
/**
2930
* @return bool
3031
*/
3132
public function isLoopContinuouslyUntilEsc()
3233
{
33-
return $this->isLoopContinuouslyUntilEsc;
34+
return $this->isLoopUntilEsc;
3435
}
36+
3537
/**
3638
* @param bool $value
3739
* @return \PhpOffice\PhpPresentation\PresentationProperties
3840
*/
3941
public function setLoopContinuouslyUntilEsc($value = false)
4042
{
41-
$this->isLoopContinuouslyUntilEsc = $value;
43+
$this->isLoopUntilEsc = $value;
4244
return $this;
4345
}
4446
}

0 commit comments

Comments
 (0)