Completed
Push — master ( 6bcfe0...b7fa03 )
by Adam
04:08
created
src/commands/Git.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,6 @@  discard block
 block discarded – undo
62 62
 
63 63
 	/**
64 64
 	 * Sets path to working directory
65
-	 * @param string $workingTree
66 65
 	 */
67 66
 	public function setWorkingDirectory($workingDirectory)
68 67
 	{
@@ -100,7 +99,7 @@  discard block
 block discarded – undo
100 99
 
101 100
 	/**
102 101
 	 * Sets git command (to be executed later)
103
-	 * @param mixed $command
102
+	 * @param string $command
104 103
 	 */
105 104
 	public function setCommand($command)
106 105
 	{
@@ -139,6 +138,9 @@  discard block
 block discarded – undo
139 138
 	}
140 139
 
141 140
 
141
+	/**
142
+	 * @param string $command
143
+	 */
142 144
 	private function exec($command)
143 145
 	{
144 146
 		$exec = new Exec();
Please login to merge, or discard this patch.
src/Bootstrap.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,6 +92,9 @@  discard block
 block discarded – undo
92 92
 	}
93 93
 
94 94
 
95
+	/**
96
+	 * @param integer $code
97
+	 */
95 98
 	private function terminate($code)
96 99
 	{
97 100
 		throw new TerminateException(NULL, $code);
@@ -141,7 +144,7 @@  discard block
 block discarded – undo
141 144
 
142 145
 
143 146
 	/**
144
-	 * @param $configFile
147
+	 * @param string $configFile
145 148
 	 * @param Container|NULL $bootstrapContainer
146 149
 	 * @return Container
147 150
 	 */
Please login to merge, or discard this patch.