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 ( 1a1e57...ace484 )
by
unknown
18:25
created
core/tests/Database/TransactionHandlerTest.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      *
67 67
      * @param mixed  $object       object
68 68
      * @param string $propertyName method name
69
-     * @param mixed  $value        parameters
69
+     * @param integer  $value        parameters
70 70
      * @return void
71 71
      */
72 72
     private function setProperty(&$object, $propertyName, $value)
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     /**
82 82
      * get connector
83 83
      *
84
-     * @return m\MockInterface|\Xpressengine\Database\VirtualConnection
84
+     * @return m\MockInterface
85 85
      */
86 86
     private function getConnector()
87 87
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * get connection
93 93
      *
94
-     * @return m\MockInterface|\Illuminate\Database\Connection
94
+     * @return m\MockInterface
95 95
      */
96 96
     private function getConnection()
97 97
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     /**
102 102
      * get database coupler
103 103
      *
104
-     * @return m\MockInterface|\Xpressengine\Database\DatabaseCoupler
104
+     * @return m\MockInterface
105 105
      */
106 106
     private function getDatabaseCoupler()
107 107
     {
Please login to merge, or discard this patch.
core/tests/DynamicField/DynamicFieldHandlerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * get config entity
60 60
      *
61
-     * @return m\MockInterface|\Xpressengine\Config\ConfigEntity
61
+     * @return m\MockInterface
62 62
      */
63 63
     private function getConfigEntity()
64 64
     {
Please login to merge, or discard this patch.
core/tests/Interception/AdvisorCollectionTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -104,6 +104,10 @@
 block discarded – undo
104 104
 
105 105
     }
106 106
 
107
+    /**
108
+     * @param AdvisorCollection $object
109
+     * @param string $property
110
+     */
107 111
     protected function getPropertyValue($object, $property)
108 112
     {
109 113
         $refl     = new \ReflectionObject($object);
Please login to merge, or discard this patch.
core/tests/Interception/AdvisorListTest.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,6 @@
 block discarded – undo
34 34
     /**
35 35
      * getAdvisorList
36 36
      *
37
-     * @param null $proxyObject
38 37
      * @param null $sortedList
39 38
      * @param null $advisorArr
40 39
      *
Please login to merge, or discard this patch.
core/tests/Interception/ClassPassTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@
 block discarded – undo
28 28
         $this->assertContains('Proxy_Dave_Dave extends Dave\\Dave', $code);
29 29
     }
30 30
 
31
+    /**
32
+     * @param string $string
33
+     */
31 34
     private function getConfig($string)
32 35
     {
33 36
         $m = \Mockery::mock('\Xpressengine\Interception\Proxy\ProxyConfig');
Please login to merge, or discard this patch.
core/tests/Interception/InterceptionHandlerTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -69,6 +69,10 @@
 block discarded – undo
69 69
     }
70 70
 
71 71
 
72
+    /**
73
+     * @param \Mockery\MockInterface $advisorCollection
74
+     * @param \Mockery\MockInterface $generator
75
+     */
72 76
     protected function getHandler($advisorCollection = null, $generator = null)
73 77
     {
74 78
 
Please login to merge, or discard this patch.
core/tests/Interception/ProxyGeneratorTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -73,6 +73,9 @@
 block discarded – undo
73 73
         return new ProxyGenerator($loader, $passes);
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $loader
78
+     */
76 79
     private function getLoader($loader = null)
77 80
     {
78 81
         if ($loader === 'FileLoader') {
Please login to merge, or discard this patch.
core/tests/Interception/ProxyInvocationHandlerTest.php 1 patch
Doc Comments   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -84,10 +84,9 @@  discard block
 block discarded – undo
84 84
      * getAdvisorList
85 85
      *
86 86
      * @param null $proxyObject
87
-     * @param null $sortedList
88
-     * @param null $advisorArr
87
+     * @param MockInterface $advisorList
89 88
      *
90
-     * @return AdvisorList
89
+     * @return ProxyInvocationHandler
91 90
      */
92 91
     protected function getHandler($proxyObject = null, $method = 'originMethod', $advisorList = null)
93 92
     {
@@ -107,11 +106,10 @@  discard block
 block discarded – undo
107 106
     /**
108 107
      * getAdvisorList
109 108
      *
110
-     * @param null $proxyObject
111 109
      * @param null $sortedList
112 110
      * @param null $advisorArr
113 111
      *
114
-     * @return AdvisorList
112
+     * @return MockInterface
115 113
      */
116 114
     protected function getAdvisorList($sortedList = null, $advisorArr = null)
117 115
     {
Please login to merge, or discard this patch.
core/tests/Media/AudioHandlerTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -103,6 +103,10 @@
 block discarded – undo
103 103
         $instance->remove($mockMedia);
104 104
     }
105 105
 
106
+    /**
107
+     * @param AudioHandler $object
108
+     * @param string $methodName
109
+     */
106 110
     private function invokeMethod(&$object, $methodName, array $parameters = array())
107 111
     {
108 112
         $reflection = new \ReflectionClass(get_class($object));
Please login to merge, or discard this patch.