GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 3e2b02...53682b )
by Vladimir
03:32
created
src/Papper/TypeMap.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	}
122 122
 
123 123
 	/**
124
-	 * @return callable|null
124
+	 * @return \Closure|null
125 125
 	 */
126 126
 	public function getBeforeMapFunc()
127 127
 	{
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 	}
130 130
 
131 131
 	/**
132
-	 * @param callable $func
132
+	 * @param \Closure $func
133 133
 	 */
134 134
 	public function setBeforeMapFunc(\Closure $func)
135 135
 	{
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	}
138 138
 
139 139
 	/**
140
-	 * @return callable|null
140
+	 * @return \Closure|null
141 141
 	 */
142 142
 	public function getAfterMapFunc()
143 143
 	{
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 	}
146 146
 
147 147
 	/**
148
-	 * @param callable $func
148
+	 * @param \Closure $func
149 149
 	 */
150 150
 	public function setAfterMapFunc(\Closure $func)
151 151
 	{
Please login to merge, or discard this patch.
tests/Papper/Tests/MappingEngineTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@  discard block
 block discarded – undo
50 50
 		return $this->getterToProperty;
51 51
 	}
52 52
 
53
+	/**
54
+	 * @param string $getterToProperty
55
+	 */
53 56
 	public function setGetterToProperty($getterToProperty)
54 57
 	{
55 58
 		$this->getterToProperty = $getterToProperty;
@@ -60,6 +63,9 @@  discard block
 block discarded – undo
60 63
 		return $this->getterToSetter;
61 64
 	}
62 65
 
66
+	/**
67
+	 * @param string $getterToSetter
68
+	 */
63 69
 	public function setGetterToSetter($getterToSetter)
64 70
 	{
65 71
 		$this->getterToSetter = $getterToSetter;
Please login to merge, or discard this patch.
tests/Papper/Tests/MemberOptions/ConstructUsingTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
 {
42 42
 	public $value;
43 43
 
44
+	/**
45
+	 * @param string $value
46
+	 */
44 47
 	public function __construct($value)
45 48
 	{
46 49
 		$this->value = $value;
Please login to merge, or discard this patch.