Completed
Push — master ( edb671...10c98e )
by Jeroen
02:23
created
src/ValueObjects/Uuid.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * @param string $string
34 34
      *
35
-     * @return string
35
+     * @return Uuid
36 36
      */
37 37
     public static function fromString(string $string): string
38 38
     {
Please login to merge, or discard this patch.
src/Exceptions/Handler.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	/**
20 20
 	 * Handler constructor.
21 21
 	 *
22
-	 * @param FormatterInterface $formatter
22
+	 * @param Formatters\DefaultFormatter $formatter
23 23
 	 */
24 24
 	public function __construct(FormatterInterface $formatter)
25 25
 	{
@@ -101,6 +101,9 @@  discard block
 block discarded – undo
101 101
 		}
102 102
 	}
103 103
 
104
+	/**
105
+	 * @param integer $statusCode
106
+	 */
104 107
 	public function sendException($data, $statusCode)
105 108
 	{
106 109
 		header("HTTP/1.0 " . $statusCode . " Internal Server Error");
Please login to merge, or discard this patch.