Completed
Branch dev (1ec345)
by Josef
12:09
created
src/RuntimeException.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 abstract class RuntimeException extends BaseRuntimeException implements HeleException
10 10
 {
11 11
 
12
+	/**
13
+	 * @param string $message
14
+	 */
12 15
 	public function __construct($message, Exception $previous = null)
13 16
 	{
14 17
 		parent::__construct($message, 0, $previous);
Please login to merge, or discard this patch.
src/Method/CheckHealth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 
8 8
 	public function __construct()
9 9
 	{
10
-		parent::__construct(function ($data) {
10
+		parent::__construct(function($data) {
11 11
 			return $data;
12 12
 		});
13 13
 	}
Please login to merge, or discard this patch.
src/Method/CheckSlots.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 			throw new MethodException('Bad method output: ' . $e->getMessage(), $e);
57 57
 		}
58 58
 
59
-		return array_map(function ($slot) {
59
+		return array_map(function($slot) {
60 60
 			return array(
61 61
 				'startDateTime' => $slot['startDateTime']->format(DateTime::W3C),
62 62
 				'endDateTime' => $slot['endDateTime']->format(DateTime::W3C),
Please login to merge, or discard this patch.