Test Failed
Push — master ( 892598...558941 )
by Antonio Carlos
11:17
created
src/Checkers/Docusign.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@  discard block
 block discarded – undo
37 37
         return !class_exists(ApiClient::class);
38 38
     }
39 39
 
40
+    /**
41
+     * @param \DocuSign\eSign\Model\LoginInformation $login
42
+     */
40 43
     private function getAccountIdFromLogin($login)
41 44
     {
42 45
         return $login->getLoginAccounts()[0]->getAccountId();
@@ -80,7 +83,7 @@  discard block
 block discarded – undo
80 83
     }
81 84
 
82 85
     /**
83
-     * @param $config
86
+     * @param ApiClient $config
84 87
      * @return \DocuSign\eSign\Model\LoginInformation
85 88
      */
86 89
     protected function getLoginInformation($config)
@@ -106,6 +109,9 @@  discard block
 block discarded – undo
106 109
         );
107 110
     }
108 111
 
112
+    /**
113
+     * @return string
114
+     */
109 115
     private function makeFileName($file)
110 116
     {
111 117
         if (is_absolute_path($file)) {
Please login to merge, or discard this patch.
src/Commands.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * Format input to textual table.
101 101
      *
102 102
      * @param Command|null $command
103
-     * @param $columns
103
+     * @param string[] $columns
104 104
      * @param  \Illuminate\Contracts\Support\Arrayable|array $rows
105 105
      */
106 106
     private function table($command, $columns, $rows)
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
      * Write a string as information output.
115 115
      *
116 116
      * @param Command|null $command
117
-     * @param $string
117
+     * @param string $string
118 118
      */
119 119
     private function info($command, $string)
120 120
     {
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      * Write a string as information output.
128 128
      *
129 129
      * @param Command|null $command
130
-     * @param $string
130
+     * @param string $string
131 131
      */
132 132
     private function error($command, $string)
133 133
     {
Please login to merge, or discard this patch.
src/Http/Controllers/Health.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * Check and get one resource.
41 41
      *
42
-     * @param $slug
42
+     * @param string $slug
43 43
      * @return mixed
44 44
      * @throws \Exception
45 45
      */
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * Get all resources.
55 55
      *
56
-     * @return mixed
56
+     * @return \Illuminate\Support\Collection
57 57
      * @throws \Exception
58 58
      */
59 59
     public function allResources()
Please login to merge, or discard this patch.
tests/PhpUnit/Service/ServiceTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -226,6 +226,9 @@
 block discarded – undo
226 226
         $this->assertTrue($resource->first()['name'] == 'Database');
227 227
     }
228 228
 
229
+    /**
230
+     * @param Collection $resources
231
+     */
229 232
     public function assertCheckedResources($resources)
230 233
     {
231 234
         $healthCount = $resources->reduce(function ($carry, $resource) {
Please login to merge, or discard this patch.