Skip to content

Commit ee3f1c1

Browse files
committed
Output.php code style
1 parent 0df2846 commit ee3f1c1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/Output.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,17 @@ protected function stringWidth($input, $width = 3)
117117

118118
interface IWriter
119119
{
120+
/**
121+
* @param string $string
122+
*/
120123
public function write($string);
121124
}
122125

123-
class ConsoleWriter implements IWriter
126+
class ConsoleWriter implements IWriter
124127
{
128+
/**
129+
* @param string $string
130+
*/
125131
public function write($string)
126132
{
127133
echo $string;

0 commit comments

Comments
 (0)