Skip to content

Commit 38f575f

Browse files
committed
Scrutinizer fixes
1 parent 51cde52 commit 38f575f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/PhpWord/Style/Frame.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ class Frame extends AbstractStyle
105105
/**
106106
* Leftmost (horizontal) position
107107
*
108-
* @var Absolute
108+
* @var int|Absolute Default is set with int, but converted to Absolute when read
109109
*/
110110
private $left = 0;
111111

112112
/**
113113
* Topmost (vertical) position
114114
*
115-
* @var Absolute
115+
* @var int|Absolute Default is set with int, but converted to Absolute when read
116116
*/
117117
private $top = 0;
118118

src/PhpWord/Style/Indentation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ class Indentation extends AbstractStyle
3131
/**
3232
* Left indentation
3333
*
34-
* @var Absolute
34+
* @var int|Absolute Default is set with int, but converted to Absolute when read
3535
*/
3636
private $left = 0;
3737

3838
/**
3939
* Right indentation
4040
*
41-
* @var Absolute
41+
* @var int|Absolute Default is set with int, but converted to Absolute when read
4242
*/
4343
private $right = 0;
4444

0 commit comments

Comments
 (0)