Completed
Push — master ( c49cbc...039121 )
by Timur
02:32
created
src/Applications/GitApplication.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,6 @@
 block discarded – undo
55 55
     /**
56 56
      * Indicates that application will be installed from custom git repository.
57 57
      *
58
-     * @param string $repository
59 58
      *
60 59
      * @return static
61 60
      */
Please login to merge, or discard this patch.
src/Commands/Command.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     /**
93 93
      * Set payload data.
94 94
      *
95
-     * @param string|int $key
95
+     * @param string $key
96 96
      * @param mixed      $value
97 97
      *
98 98
      * @return static
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     /**
112 112
      * Return payload data.
113 113
      *
114
-     * @param string|int $key
114
+     * @param string $key
115 115
      * @param mixed      $default = null
116 116
      *
117 117
      * @return mixed|null
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     /**
129 129
      * Determines if payload has requried keys.
130 130
      *
131
-     * @param string|int|array $keys
131
+     * @param string[] $keys
132 132
      *
133 133
      * @return bool
134 134
      */
Please login to merge, or discard this patch.
src/Commands/ResourceCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     /**
83 83
      * Set resource ID.
84 84
      *
85
-     * @param int|string $resourceId
85
+     * @param integer $resourceId
86 86
      *
87 87
      * @return static
88 88
      */
Please login to merge, or discard this patch.
src/Resource.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * Initialize new resource.
66 66
      *
67
-     * @return mixed
67
+     * @return Resource
68 68
      */
69 69
     protected function initializeResource()
70 70
     {
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * Get resource data.
145 145
      *
146
-     * @param string|int $key
146
+     * @param string $key
147 147
      * @param mixed      $default = null
148 148
      *
149 149
      * @return mixed|null
Please login to merge, or discard this patch.