Completed
Push — master ( 7f33bf...9b09f6 )
by Adam
04:00
created
Bootstrap.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -99,12 +99,18 @@  discard block
 block discarded – undo
99 99
 	}
100 100
 
101 101
 
102
+	/**
103
+	 * @param integer $code
104
+	 */
102 105
 	protected function terminate($code)
103 106
 	{
104 107
 		throw new TerminateException(NULL, $code);
105 108
 	}
106 109
 
107 110
 
111
+	/**
112
+	 * @param string $workingDir
113
+	 */
108 114
 	protected function detectBootstrapFilename($workingDir)
109 115
 	{
110 116
 		return $workingDir . DIRECTORY_SEPARATOR . 'bootstrap.php';
@@ -112,6 +118,8 @@  discard block
 block discarded – undo
112 118
 
113 119
 
114 120
 	/**
121
+	 * @param string $workingDir
122
+	 * @param string $configFile
115 123
 	 * @return Container
116 124
 	 */
117 125
 	protected function createContainer($workingDir, $configFile, Container $bootstrapContainer = NULL)
@@ -165,6 +173,9 @@  discard block
 block discarded – undo
165 173
 	}
166 174
 
167 175
 
176
+	/**
177
+	 * @param IBuild $class
178
+	 */
168 179
 	protected function getAutowiredProperties($class)
169 180
 	{
170 181
 		$return = [];
@@ -180,6 +191,10 @@  discard block
 block discarded – undo
180 191
 	}
181 192
 
182 193
 
194
+	/**
195
+	 * @param string $color
196
+	 * @param string $backgroundColor
197
+	 */
183 198
 	protected function log($message, $color = NULL, $backgroundColor = NULL)
184 199
 	{
185 200
 		echo Cli::getColoredString($message . PHP_EOL, $color, $backgroundColor);
Please login to merge, or discard this patch.