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 — upgrade ( 37665b...5875a3 )
by Time
01:50
created
Source/Queryable.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Pinq\Expressions as O;
6 6
 use Pinq\Iterators\IIteratorScheme;
7 7
 use Pinq\Queries\Requests;
8
-use Pinq\Queries\Segments;
9 8
 
10 9
 /**
11 10
  * The standard queryable class, fully implements the queryable API
Please login to merge, or discard this patch.
Source/Traversable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * @param IIteratorScheme|null $scheme
61 61
      * @param Traversable|null     $source
62 62
      *
63
-     * @return callable
63
+     * @return \Closure
64 64
      */
65 65
     public static function factory(IIteratorScheme $scheme = null, Traversable $source = null)
66 66
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      * Returns a callable factory to construct an equivalent
77 77
      * instance with the supplied elements.
78 78
      *
79
-     * @return callable
79
+     * @return \Closure
80 80
      */
81 81
     final protected function scopedSelfFactory()
82 82
     {
Please login to merge, or discard this patch.
Source/Parsing/PhpParser/Parser.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@
 block discarded – undo
55 55
                 AST::convert($matchingFunctionNode->getBodyNodes()));
56 56
     }
57 57
 
58
+    /**
59
+     * @param string $filePath
60
+     */
58 61
     private function getLocatedFunctionNodesIn($filePath)
59 62
     {
60 63
         if (!isset(self::$locatedFunctions[$filePath])) {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Pinq\Parsing\InvalidFunctionException;
9 9
 use Pinq\Parsing\ParserBase;
10 10
 use PhpParser;
11
-use Pinq\Parsing\Resolvers\FunctionMagicResolver;
12 11
 
13 12
 /**
14 13
  * Function parser implementation utilising nikic\PHP-Parser to
Please login to merge, or discard this patch.
Source/Expressions/ParameterExpression.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -31,6 +31,10 @@
 block discarded – undo
31 31
      */
32 32
     private $isPassedByReference;
33 33
 
34
+    /**
35
+     * @param string $name
36
+     * @param string $typeHint
37
+     */
34 38
     public function __construct(
35 39
             $name,
36 40
             $typeHint = null,
Please login to merge, or discard this patch.
Source/Analysis/TypeOperations/Method.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
      */
23 23
     protected $reflection;
24 24
 
25
+    /**
26
+     * @param string $sourceType
27
+     */
25 28
     public function __construct(ITypeSystem $typeSystem, $sourceType, \ReflectionMethod $reflection, $returnType)
26 29
     {
27 30
         parent::__construct($typeSystem, $sourceType, $returnType);
Please login to merge, or discard this patch.
Source/Analysis/Types/ObjectType.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -137,6 +137,9 @@  discard block
 block discarded – undo
137 137
         return parent::getStaticMethod($expression);
138 138
     }
139 139
 
140
+    /**
141
+     * @param boolean $mustBeStatic
142
+     */
140 143
     protected function getMethodByName(O\Expression $nameExpression, $mustBeStatic)
141 144
     {
142 145
         if ($nameExpression instanceof O\ValueExpression) {
@@ -171,6 +174,9 @@  discard block
 block discarded – undo
171 174
         return parent::getStaticField($expression);
172 175
     }
173 176
 
177
+    /**
178
+     * @param boolean $static
179
+     */
174 180
     protected function getFieldByName(O\Expression $nameExpression, $static)
175 181
     {
176 182
         if ($nameExpression instanceof O\ValueExpression) {
Please login to merge, or discard this patch.
Source/Parsing/FunctionReflection.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -159,6 +159,9 @@
 block discarded – undo
159 159
                 $parentConstant);                   //parent::class
160 160
     }
161 161
 
162
+    /**
163
+     * @param string|null $type
164
+     */
162 165
     protected function fullyQualify($type)
163 166
     {
164 167
         return $type[0] !== '\\' ? '\\' . $type : $type;
Please login to merge, or discard this patch.
Source/Parsing/FunctionSignature.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -56,6 +56,14 @@
 block discarded – undo
56 56
      */
57 57
     protected $hash;
58 58
 
59
+    /**
60
+     * @param integer $type
61
+     * @param boolean $returnsReference
62
+     * @param integer|null $accessModifier
63
+     * @param integer|null $polymorphModifier
64
+     * @param boolean|null $isStatic
65
+     * @param string|null $name
66
+     */
59 67
     protected function __construct(
60 68
             $type,
61 69
             $returnsReference,
Please login to merge, or discard this patch.
Source/Parsing/Reflection.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * @param callable $function
20 20
      *
21
-     * @return \ReflectionFunctionAbstract
21
+     * @return callable
22 22
      * @throws InvalidFunctionException
23 23
      */
24 24
     final public static function fromCallable(callable $function)
Please login to merge, or discard this patch.