Completed
Pull Request — master (#15)
by
unknown
16:25
created
Classes/System/Factory/AbstractDeclarationBasedFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
     }
146 146
 
147 147
     /**
148
-     * @param $key
148
+     * @param string $key
149 149
      * @return mixed
150 150
      * @throws \Aoe\Asdis\System\Factory\Exception\DeclarationNotFound
151 151
      */
Please login to merge, or discard this patch.
Classes/System/Log/Logger.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     /**
13 13
      * @param string $context
14
-     * @param Exception $e
14
+     * @param \Exception $e
15 15
      */
16 16
     public function logException($context, \Exception $e)
17 17
     {
Please login to merge, or discard this patch.
Classes/Domain/Model/Asset/Factory.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     }
45 45
 
46 46
     /**
47
-     * @param Aoe\Asdis\System\Uri\Filter\ChainFactory $filterChainFactory
47
+     * @param ChainFactory $filterChainFactory
48 48
      */
49 49
     public function injectFilterChainFactory(ChainFactory $filterChainFactory)
50 50
     {
@@ -84,14 +84,14 @@  discard block
 block discarded – undo
84 84
     }
85 85
 
86 86
     /**
87
-     * @return \Aoe\Asdis\Domain\Model\Asset
87
+     * @return string
88 88
      */
89 89
     protected function createAsset() {
90 90
         return $this->objectManager->get(Asset::class);
91 91
     }
92 92
 
93 93
     /**
94
-     * @return \Aoe\Asdis\Domain\Model\Asset\Collection
94
+     * @return string
95 95
      */
96 96
     protected function createAssetCollection() {
97 97
         return $this->objectManager->get(AssetCollection::class);
Please login to merge, or discard this patch.