Completed
Push — master ( c2633f...6f7dec )
by Peter
04:14
created
src/Factories/FilterFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 class FilterFactory
19 19
 {
20 20
 
21
+	/**
22
+	 * @param string $interface
23
+	 */
21 24
 	public static function create(Signal $signal, $interface)
22 25
 	{
23 26
 		$filters = [];
Please login to merge, or discard this patch.
src/Builder/Addendum.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -353,6 +353,10 @@  discard block
 block discarded – undo
353 353
 		return false;
354 354
 	}
355 355
 
356
+	/**
357
+	 * @param ClassNotFoundException $e
358
+	 * @param string $file
359
+	 */
356 360
 	private function log($e, $file)
357 361
 	{
358 362
 		/* @var $e ParseError|Exception */
@@ -361,6 +365,10 @@  discard block
 block discarded – undo
361 365
 		$this->signal->getLogger()->warning($msg);
362 366
 	}
363 367
 
368
+	/**
369
+	 * @param Exception $e
370
+	 * @param string $file
371
+	 */
364 372
 	private function err($e, $file)
365 373
 	{
366 374
 		/* @var $e ParseError|Exception */
Please login to merge, or discard this patch.