Completed
Branch master (cd0f1c)
by Michael
03:21
created
src/FileLoader.php 3 patches
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Michaels\Manager;
3 3
 
4
-use Michaels\Manager\Contracts\DecoderInterface;
4
+use Exception;
5 5
 use Michaels\Manager\Bags\FileBag;
6
-use Michaels\Manager\Exceptions\UnsupportedFilesException;
6
+use Michaels\Manager\Contracts\DecoderInterface;
7 7
 use Michaels\Manager\Exceptions\BadFileDataException;
8
-use Exception;
8
+use Michaels\Manager\Exceptions\UnsupportedFilesException;
9 9
 
10 10
 /**
11 11
  * Loads configuration files and converts them to php arrays using Decoders
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
      * Process file bag to load into the data manager.
102 102
      * A file bag is an array of SplFileInfo objects.
103 103
      *
104
-     * @param array|FileBag $fileBag
104
+     * @param FileBag $fileBag
105 105
      * @return array
106 106
      * @throws Exception
107 107
      */
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      * Default decoder class factory method.
173 173
      * Checks to make sure we have a default decoder available and if so, adds it as a decoder to the file loader.
174 174
      *
175
-     * @param $mimeType
175
+     * @param string $mimeType
176 176
      */
177 177
     protected function checkAndAddDefaultDecoder($mimeType)
178 178
     {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         if (!empty($this->unsupportedFiles)) {
129 129
             $badFiles = implode(", ", $this->unsupportedFiles);
130 130
             throw new UnsupportedFilesException(
131
-                'The file(s) ' . $badFiles . ' are not supported by the available decoders.'
131
+                'The file(s) '.$badFiles.' are not supported by the available decoders.'
132 132
             );
133 133
         }
134 134
 
@@ -176,11 +176,11 @@  discard block
 block discarded – undo
176 176
      */
177 177
     protected function checkAndAddDefaultDecoder($mimeType)
178 178
     {
179
-        $decoderClass = ucfirst($mimeType) . "Decoder";
179
+        $decoderClass = ucfirst($mimeType)."Decoder";
180 180
 
181
-        if (file_exists(__DIR__ . '/Decoders/' . $decoderClass . '.php') && !$this->isSupportedMimeType($mimeType)) {
181
+        if (file_exists(__DIR__.'/Decoders/'.$decoderClass.'.php') && !$this->isSupportedMimeType($mimeType)) {
182 182
             $nameSpace = "Michaels\\Manager\\Decoders\\";
183
-            $fullQualifiedClassName = $nameSpace . $decoderClass;
183
+            $fullQualifiedClassName = $nameSpace.$decoderClass;
184 184
             $decoder = new $fullQualifiedClassName();
185 185
             $this->addDecoder($decoder);
186 186
         }
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
 
264 264
         } else {
265 265
             // We are namespacing using the file's name
266
-            $filename = rtrim($file->getBasename(), '.' . $file->getExtension());
266
+            $filename = rtrim($file->getBasename(), '.'.$file->getExtension());
267 267
             $namespace = $this->sanitizeNamespace($filename);
268 268
             return [$namespace, $file];
269 269
         }
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/Helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             return iterator_to_array($items);
26 26
         }
27 27
 
28
-        return (array)$items;
28
+        return (array) $items;
29 29
     }
30 30
 
31 31
     /**
Please login to merge, or discard this patch.
src/Decoders/CustomXmlDecoder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * For instance, if you want to decode Yaml files with the extensions ".yml" and ".yaml",
32 32
      * then you want to set the return array to ['yaml', 'yml'].
33 33
      *
34
-     * @return array
34
+     * @return string[]
35 35
      */
36 36
     public function getMimeType()
37 37
     {
Please login to merge, or discard this patch.
src/Traits/ManagesIocTrait.php 2 patches
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.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -57,13 +57,13 @@  discard block
 block discarded – undo
57 57
     public function fetch($alias, $fallback = '_michaels_no_fallback')
58 58
     {
59 59
         // If this is a link, just go back to the master
60
-        $link = $this->getIfExists($this->nameOfIocManifest . ".$alias");
60
+        $link = $this->getIfExists($this->nameOfIocManifest.".$alias");
61 61
         if (is_string($link) && strpos($link, '_michaels_link_') !== false) {
62 62
             return $this->fetch(str_replace('_michaels_link_', '', $link));
63 63
         }
64 64
 
65 65
         // Otherwise, continue
66
-        $shared = $this->getIfExists($this->nameOfIocManifest . "._singletons.$alias");
66
+        $shared = $this->getIfExists($this->nameOfIocManifest."._singletons.$alias");
67 67
 
68 68
         if ($shared instanceof NoItemFoundMessage) {
69 69
             // This is not a shared item. We want a new one each time
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
             // This is shared, but we must produce and cache it
77 77
             } else {
78 78
                 $object = $this->produceDependency($alias, $fallback);
79
-                $this->set($this->nameOfIocManifest . "._singletons.$alias", $object);
79
+                $this->set($this->nameOfIocManifest."._singletons.$alias", $object);
80 80
                 return $object;
81 81
             }
82 82
         }
@@ -104,17 +104,17 @@  discard block
 block discarded – undo
104 104
             unset($links[0]);
105 105
         }
106 106
 
107
-        $this->set($this->nameOfIocManifest . ".$alias", $factory);
107
+        $this->set($this->nameOfIocManifest.".$alias", $factory);
108 108
 
109 109
         // Setup any declared dependencies
110 110
         if ($declared) {
111
-            $this->set($this->nameOfIocManifest . "._declarations.$alias", $declared);
111
+            $this->set($this->nameOfIocManifest."._declarations.$alias", $declared);
112 112
         }
113 113
 
114 114
         // Add Links
115 115
         if (!empty($links)) {
116 116
             foreach ($links as $link) {
117
-                $this->set($this->nameOfIocManifest . ".$link", "_michaels_link_$alias");
117
+                $this->set($this->nameOfIocManifest.".$link", "_michaels_link_$alias");
118 118
             }
119 119
         }
120 120
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      */
129 129
     public function share($alias)
130 130
     {
131
-        $this->add($this->nameOfIocManifest . "._singletons.$alias", true);
131
+        $this->add($this->nameOfIocManifest."._singletons.$alias", true);
132 132
         return $this;
133 133
     }
134 134
 
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
      */
141 141
     public function setup($alias, $pipeline)
142 142
     {
143
-        $this->add($this->nameOfIocManifest . "._pipelines.$alias", $pipeline);
143
+        $this->add($this->nameOfIocManifest."._pipelines.$alias", $pipeline);
144 144
         return $this;
145 145
     }
146 146
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     protected function produceDependency($alias, $fallback = '_michaels_no_fallback')
176 176
     {
177 177
         /* Get the registered factory (string, closure, object, container, NoItemFoundMessage) */
178
-        $factory = $this->getIfExists($this->nameOfIocManifest . ".$alias");
178
+        $factory = $this->getIfExists($this->nameOfIocManifest.".$alias");
179 179
 
180 180
         /* Manage not founds and fallback */
181 181
         if ($factory instanceof NoItemFoundMessage) {
@@ -189,13 +189,13 @@  discard block
 block discarded – undo
189 189
         }
190 190
 
191 191
         /* Get any declared dependencies */
192
-        $declared = $this->getIfExists($this->nameOfIocManifest . "._declarations.$alias");
192
+        $declared = $this->getIfExists($this->nameOfIocManifest."._declarations.$alias");
193 193
         $dependencies = [];
194 194
 
195 195
         // Now setup those dependencies into an array
196 196
         if (!$declared instanceof NoItemFoundMessage) {
197 197
             $dependencies = array_map(function(&$value) use ($alias) {
198
-                if (is_string($value) && $this->exists($this->nameOfIocManifest . ".$alias")) {
198
+                if (is_string($value) && $this->exists($this->nameOfIocManifest.".$alias")) {
199 199
                     return $this->fetch($value);
200 200
                 }
201 201
                 return $value;
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
         }
227 227
 
228 228
         /* Run the object through the pipeline, if desired */
229
-        $pipeline = $this->getIfExists($this->nameOfIocManifest . "._pipelines.$alias");
229
+        $pipeline = $this->getIfExists($this->nameOfIocManifest."._pipelines.$alias");
230 230
 
231 231
         if (!$pipeline instanceof NoItemFoundMessage) {
232 232
             /** @var \Closure $pipeline */
Please login to merge, or discard this patch.
src/Traits/ChainsNestedItemsTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     {
41 41
         $prefix = $this->buildPrefix();
42 42
 
43
-        return $this->get($prefix . $name);
43
+        return $this->get($prefix.$name);
44 44
     }
45 45
 
46 46
     /**
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     {
70 70
         $prefix = $this->buildPrefix();
71 71
 
72
-        return $this->add($prefix . $key, $value);
72
+        return $this->add($prefix.$key, $value);
73 73
     }
74 74
 
75 75
     /**
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
             $prefix = $this->currentLevel;
86 86
             $this->currentLevel = false;
87 87
 
88
-            return $prefix . ".";
88
+            return $prefix.".";
89 89
         }
90 90
     }
91 91
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     protected function addToChain($name)
98 98
     {
99 99
         $dot = ($this->currentLevel === false) ? '' : '.';
100
-        $this->currentLevel .= $dot . $name;
100
+        $this->currentLevel .= $dot.$name;
101 101
 
102 102
         return $this;
103 103
     }
Please login to merge, or discard this patch.
src/Traits/CollectionTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
             } else {
78 78
                 throw new \BadMethodCallException(
79 79
                     "Call to undefined method. `$method` does not exist in "
80
-                    . get_called_class() . " and it is not part of the Collection API"
80
+                    . get_called_class()." and it is not part of the Collection API"
81 81
                 );
82 82
             }
83 83
         }
Please login to merge, or discard this patch.
f3/f31eb6084feabee80646a55a7790f22a42b258ae073cf6c65059ea00334ecf2e.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -409,6 +409,10 @@
 block discarded – undo
409 409
     }
410 410
 
411 411
     // line 223
412
+
413
+    /**
414
+     * @param integer $__depth__
415
+     */
412 416
     public function getelement($__tree__ = null, $__opened__ = null, $__depth__ = null, ...$__varargs__)
413 417
     {
414 418
         $context = $this->env->mergeGlobals(array(
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -448,13 +448,13 @@  discard block
 block discarded – undo
448 448
                     echo "px\" class=\"hd\">
449 449
                         <span class=\"glyphicon glyphicon-play\"></span>";
450 450
                     // line 231
451
-                    if ( !$this->getAttribute((isset($context["project"]) ? $context["project"] : $this->getContext($context, "project")), "config", array(0 => "simulate_namespaces"), "method")) {
451
+                    if (!$this->getAttribute((isset($context["project"]) ? $context["project"] : $this->getContext($context, "project")), "config", array(0 => "simulate_namespaces"), "method")) {
452 452
                         echo "<a href=\"";
453 453
                         echo $this->env->getExtension('sami')->pathForNamespace($context, $this->getAttribute($context["element"], 1, array(), "array"));
454 454
                         echo "\">";
455 455
                     }
456 456
                     echo $this->getAttribute($context["element"], 0, array(), "array");
457
-                    if ( !$this->getAttribute((isset($context["project"]) ? $context["project"] : $this->getContext($context, "project")), "config", array(0 => "simulate_namespaces"), "method")) {
457
+                    if (!$this->getAttribute((isset($context["project"]) ? $context["project"] : $this->getContext($context, "project")), "config", array(0 => "simulate_namespaces"), "method")) {
458 458
                         echo "</a>";
459 459
                     }
460 460
                     // line 232
@@ -522,7 +522,7 @@  discard block
 block discarded – undo
522 522
 
523 523
     public function getDebugInfo()
524 524
     {
525
-        return array (  498 => 245,  485 => 240,  481 => 239,  472 => 238,  467 => 235,  465 => 234,  461 => 232,  451 => 231,  447 => 230,  438 => 229,  436 => 228,  432 => 227,  429 => 225,  426 => 224,  412 => 223,  396 => 220,  379 => 218,  374 => 217,  371 => 216,  368 => 215,  365 => 214,  353 => 213,  325 => 157,  322 => 156,  316 => 37,  312 => 38,  309 => 37,  306 => 35,  298 => 33,  275 => 32,  271 => 31,  268 => 30,  260 => 28,  243 => 27,  239 => 26,  236 => 25,  224 => 23,  220 => 22,  217 => 21,  214 => 20,  211 => 19,  206 => 222,  173 => 210,  170 => 182,  168 => 156,  49 => 39,  47 => 19,  31 => 7,  24 => 2,  22 => 1,);
525
+        return array(498 => 245, 485 => 240, 481 => 239, 472 => 238, 467 => 235, 465 => 234, 461 => 232, 451 => 231, 447 => 230, 438 => 229, 436 => 228, 432 => 227, 429 => 225, 426 => 224, 412 => 223, 396 => 220, 379 => 218, 374 => 217, 371 => 216, 368 => 215, 365 => 214, 353 => 213, 325 => 157, 322 => 156, 316 => 37, 312 => 38, 309 => 37, 306 => 35, 298 => 33, 275 => 32, 271 => 31, 268 => 30, 260 => 28, 243 => 27, 239 => 26, 236 => 25, 224 => 23, 220 => 22, 217 => 21, 214 => 20, 211 => 19, 206 => 222, 173 => 210, 170 => 182, 168 => 156, 49 => 39, 47 => 19, 31 => 7, 24 => 2, 22 => 1,);
526 526
     }
527 527
 }
528 528
 /* {% from _self import element %}*/
Please login to merge, or discard this patch.
08/0866d25dcd12d0751e52778e488e8971e9ffef36d1887f00a116ffa6c20dfab7.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
 
161 161
     public function getDebugInfo()
162 162
     {
163
-        return array (  105 => 50,  89 => 36,  86 => 35,  79 => 31,  62 => 17,  50 => 7,  47 => 6,  41 => 4,  34 => 3,  30 => 1,  28 => 2,  11 => 1,);
163
+        return array(105 => 50, 89 => 36, 86 => 35, 79 => 31, 62 => 17, 50 => 7, 47 => 6, 41 => 4, 34 => 3, 30 => 1, 28 => 2, 11 => 1,);
164 164
     }
165 165
 }
166 166
 /* {% extends "layout/layout.twig" %}*/
Please login to merge, or discard this patch.