Completed
Push — master ( cb3862...0286b8 )
by Michael
02:24
created
src/Decoders/CustomXmlDecoder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * For instance, if you want to decode Yaml files with the extensions ".yml" and ".yaml",
34 34
      * then you want to set the return array to ['yaml', 'yml'].
35 35
      *
36
-     * @return array
36
+     * @return string[]
37 37
      */
38 38
     public function getMimeType()
39 39
     {
Please login to merge, or discard this patch.
src/Traits/ManagesItemsTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -435,7 +435,7 @@
 block discarded – undo
435 435
 
436 436
     /**
437 437
      * Cycle through the nests to see if an item is protected
438
-     * @param $item
438
+     * @param string $item
439 439
      */
440 440
     protected function checkIfProtected($item)
441 441
     {
Please login to merge, or discard this patch.
src/Traits/ManagesIocTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     /**
104 104
      * Turns a dependency into a singleton.
105 105
      * @param $alias
106
-     * @return mixed
106
+     * @return ManagesIocTrait
107 107
      */
108 108
     public function share($alias)
109 109
     {
Please login to merge, or discard this patch.
src/FileLoader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      * Process file bag to load into the data manager.
103 103
      * A file bag is an array of SplFileInfo objects.
104 104
      *
105
-     * @param array|FileBag $fileBag
105
+     * @param FileBag $fileBag
106 106
      * @param bool $ns
107 107
      * @param bool $strict
108 108
      * @return array
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      * Default decoder class factory method.
180 180
      * Checks to make sure we have a default decoder available and if so, adds it as a decoder to the file loader.
181 181
      *
182
-     * @param $mimeType
182
+     * @param string $mimeType
183 183
      */
184 184
     protected function checkAndAddDefaultDecoder($mimeType)
185 185
     {
Please login to merge, or discard this patch.