Skip to content

Commit fdd6d00

Browse files
committed
Update Command.php
1 parent 97c72c3 commit fdd6d00

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

src/Command.php

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@
77
*/
88
final class Command
99
{
10-
private function __construct() {}
10+
private function __construct()
11+
{
12+
}
1113

1214
/**
1315
* Execute command with params.
16+
*
1417
* @param string $commandLine
15-
* @param array $params
18+
* @param array $params
19+
*
1620
* @return bool|string
21+
*
1722
* @throws \Exception
1823
*/
1924
public static function exec($commandLine, array $params = array())
@@ -41,8 +46,10 @@ public static function exec($commandLine, array $params = array())
4146

4247
/**
4348
* Bind params to command.
49+
*
4450
* @param string $commandLine
45-
* @param array $params
51+
* @param array $params
52+
*
4653
* @return string
4754
*/
4855
public static function bindParams($commandLine, array $params)

0 commit comments

Comments
 (0)