Skip to content

Commit 6f66946

Browse files
author
Martin Brecht-Precht
committed
Code cleanup.
1 parent 9435ecb commit 6f66946

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

src/Handler/CommonmarkHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ public function __construct()
111111
}
112112

113113
/**
114-
* @return boolean
114+
* @return bool
115115
*/
116116
public function getHandleComments()
117117
{
118118
return $this->handleComments;
119119
}
120120

121121
/**
122-
* @param boolean $handleComments
122+
* @param bool $handleComments
123123
* @return $this
124124
*/
125125
public function setHandleComments($handleComments)

src/Handler/CommonmarkUtil/HandlerDelimiter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ public function getLiteral()
3939
}
4040

4141
/**
42-
* @return boolean
42+
* @return bool
4343
*/
4444
public function isEmpty()
4545
{
4646
return $this->empty;
4747
}
4848

4949
/**
50-
* @param boolean $empty
50+
* @param bool $empty
5151
* @return $this
5252
*/
5353
public function setEmpty($empty)

src/Handler/DebugHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ class DebugHandler implements HandlerInterface
2828
private $output = array();
2929

3030
/**
31-
* @return boolean
31+
* @return bool
3232
*/
3333
public function getHandleComments()
3434
{
3535
return $this->handleComments;
3636
}
3737

3838
/**
39-
* @param boolean $handleComments
39+
* @param bool $handleComments
4040
* @return $this
4141
*/
4242
public function setHandleComments($handleComments)

src/Handler/HtmlHandler.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ public function __construct()
6262
}
6363

6464
/**
65-
* @return boolean
65+
* @return bool
6666
*/
6767
public function getHandleComments()
6868
{
6969
return $this->handleComments;
7070
}
7171

7272
/**
73-
* @param boolean $handleComments
73+
* @param bool $handleComments
7474
* @return $this
7575
*/
7676
public function setHandleComments($handleComments)
@@ -98,15 +98,15 @@ public function setTagBuilder($tagBuilder)
9898
}
9999

100100
/**
101-
* @return boolean
101+
* @return bool
102102
*/
103103
public function getEscapeHtml()
104104
{
105105
return $this->escapeHtml;
106106
}
107107

108108
/**
109-
* @param boolean $escapeHtml
109+
* @param bool $escapeHtml
110110
* @return $this
111111
*/
112112
public function setEscapeHtml($escapeHtml)
@@ -116,15 +116,15 @@ public function setEscapeHtml($escapeHtml)
116116
}
117117

118118
/**
119-
* @return boolean
119+
* @return bool
120120
*/
121121
public function getBreakSoftBreaks()
122122
{
123123
return $this->breakSoftBreaks;
124124
}
125125

126126
/**
127-
* @param boolean $breakSoftBreaks
127+
* @param bool $breakSoftBreaks
128128
* @return $this
129129
*/
130130
public function setBreakSoftBreaks($breakSoftBreaks)

src/Handler/PhpObjectHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ class PhpObjectHandler implements HandlerInterface
4040
private $contentParents;
4141

4242
/**
43-
* @return boolean
43+
* @return bool
4444
*/
4545
public function getHandleComments()
4646
{
4747
return $this->handleComments;
4848
}
4949

5050
/**
51-
* @param boolean $handleComments
51+
* @param bool $handleComments
5252
* @return $this
5353
*/
5454
public function setHandleComments($handleComments)

src/Handler/XmlHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ class XmlHandler implements HandlerInterface
4545
private $prettyPrint = false;
4646

4747
/**
48-
* @return boolean
48+
* @return bool
4949
*/
5050
public function getHandleComments()
5151
{
5252
return $this->handleComments;
5353
}
5454

5555
/**
56-
* @param boolean $handleComments
56+
* @param bool $handleComments
5757
* @return $this
5858
*/
5959
public function setHandleComments($handleComments)

src/Handler/YamlHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ public function setPrettyPrint($prettyPrint)
3939
}
4040

4141
/**
42-
* @return boolean
42+
* @return bool
4343
*/
4444
public function getWordWrap()
4545
{
4646
return $this->wordWrap;
4747
}
4848

4949
/**
50-
* @param boolean $wordWrap
50+
* @param bool $wordWrap
5151
* @return $this
5252
*/
5353
public function setWordWrap($wordWrap)

0 commit comments

Comments
 (0)