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 ( 92f658...8ccbb2 )
by Time
05:23
created
Source/Iterators/Standard/IteratorScheme.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
  */
14 14
 class IteratorScheme extends Common\IteratorScheme
15 15
 {
16
+    /**
17
+     * @param string $phpVersion
18
+     */
16 19
     public static function compatibleWith($phpVersion)
17 20
     {
18 21
         return version_compare($phpVersion, '5.4.0', '>=');
Please login to merge, or discard this patch.
Source/Iterators/Standard/OrderedIterator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 {
15 15
     use Common\OrderedIterator;
16 16
 
17
+    /**
18
+     * @param boolean $isAscending
19
+     */
17 20
     public function __construct(IIterator $iterator, callable $orderByFunction, $isAscending)
18 21
     {
19 22
         parent::__construct($iterator);
Please login to merge, or discard this patch.
Source/Parsing/Resolvers/FunctionMagicResolver.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -162,6 +162,9 @@
 block discarded – undo
162 162
         }
163 163
     }
164 164
 
165
+    /**
166
+     * @param string $name
167
+     */
165 168
     private function resolveMagicConstantValue($name)
166 169
     {
167 170
         switch (strtoupper($name)) {
Please login to merge, or discard this patch.
Providers/DSL/Compilation/Processors/Expression/ExpressionProcessor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Pinq\Providers\DSL\Compilation\Processors\Expression;
4 4
 
5 5
 use Pinq\Expressions\ExpressionWalker;
6
-use Pinq\Queries;
7 6
 use Pinq\Queries\Functions\IFunction;
8 7
 
9 8
 /**
Please login to merge, or discard this patch.
Source/Queries/Builders/ExpressionInterpreter.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -43,6 +43,10 @@  discard block
 block discarded – undo
43 43
         }
44 44
     }
45 45
 
46
+    /**
47
+     * @param string $name
48
+     * @param integer $index
49
+     */
46 50
     final protected function getOptionalFunctionAt($name, $index, O\MethodCallExpression $expression)
47 51
     {
48 52
         $argument = $this->getOptionalArgumentAt($index, $expression);
@@ -54,11 +58,17 @@  discard block
 block discarded – undo
54 58
         return $this->getFunction("{$name}-{$index}", $argument);
55 59
     }
56 60
 
61
+    /**
62
+     * @param integer $index
63
+     */
57 64
     final protected function getFunctionAt($name, $index, O\MethodCallExpression $expression)
58 65
     {
59 66
         return $this->getFunction("{$name}-{$index}", $this->getArgumentAt($index, $expression));
60 67
     }
61 68
 
69
+    /**
70
+     * @param integer $index
71
+     */
62 72
     final protected function getArgumentValueAt($index, O\MethodCallExpression $methodExpression)
63 73
     {
64 74
         $instance = new \stdClass();
@@ -75,6 +85,9 @@  discard block
 block discarded – undo
75 85
         return $argument;
76 86
     }
77 87
 
88
+    /**
89
+     * @param \stdClass $default
90
+     */
78 91
     final protected function getOptionalArgumentValueAt(
79 92
             $index,
80 93
             O\MethodCallExpression $methodExpression,
Please login to merge, or discard this patch.
Source/Queries/Builders/ScopeInterpreter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -159,6 +159,9 @@
 block discarded – undo
159 159
         $this->visit($expression->getValue());
160 160
     }
161 161
 
162
+    /**
163
+     * @param integer $count
164
+     */
162 165
     final protected function visitOrdering($count, O\MethodCallExpression $expression)
163 166
     {
164 167
         $projection = $this->getFunctionAt($this->getSegmentId("order-$count"), 0, $expression);
Please login to merge, or discard this patch.
Source/Queries/Builders/SourceInterpreter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
      */
30 30
     protected $scopeInterpreter;
31 31
 
32
+    /**
33
+     * @param string $segmentId
34
+     */
32 35
     public function __construct(
33 36
             $segmentId,
34 37
             ISourceInterpretation $interpretation,
Please login to merge, or discard this patch.
Source/Queries/Functions/FunctionBase.php 1 patch
Doc Comments   +9 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,11 @@  discard block
 block discarded – undo
31 31
      */
32 32
     protected $bodyExpressions = [];
33 33
 
34
+    /**
35
+     * @param string $callableId
36
+     * @param string|null $scopeType
37
+     * @param string|null $namespace
38
+     */
34 39
     final public function __construct(
35 40
             $callableId,
36 41
             $scopeType,
@@ -67,7 +72,7 @@  discard block
 block discarded – undo
67 72
     /**
68 73
      * Gets a callable factory for the function structure.
69 74
      *
70
-     * @return callable
75
+     * @return \Closure
71 76
      */
72 77
     public static function factory()
73 78
     {
@@ -121,6 +126,9 @@  discard block
 block discarded – undo
121 126
         return $this->bodyExpressions === null;
122 127
     }
123 128
 
129
+    /**
130
+     * @param string $method
131
+     */
124 132
     final protected function verifyNotInternal($method)
125 133
     {
126 134
         if ($this->isInternal()) {
Please login to merge, or discard this patch.
Source/Queries/Functions/IFunction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
      * Gets an array containing the parameter ids as keys with their
58 58
      * respective scoped variable name as the value.
59 59
      *
60
-     * @return array<string, string>
60
+     * @return string[] string>
61 61
      */
62 62
     public function getParameterScopedVariableMap();
63 63
 
Please login to merge, or discard this patch.