@@ -21,7 +21,6 @@ |
||
21 | 21 | namespace AppserverIo\Doppelgaenger\StreamFilters; |
22 | 22 | |
23 | 23 | use AppserverIo\Doppelgaenger\Interfaces\StreamFilterInterface; |
24 | -use Monolog\Handler\error_log; |
|
25 | 24 | |
26 | 25 | /** |
27 | 26 | * This abstract class provides a clean parent class for custom stream filters |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | * @param string $bucketData Reference on the current bucket's data |
229 | 229 | * @param string $functionName Name of the function to inject the advices into |
230 | 230 | * |
231 | - * @return boolean |
|
231 | + * @return boolean|null |
|
232 | 232 | */ |
233 | 233 | protected function injectResultInjection(& $bucketData, $functionName) |
234 | 234 | { |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | * @param string $bucketData Reference on the current bucket's data |
248 | 248 | * @param string $functionName Name of the function to inject the advices into |
249 | 249 | * |
250 | - * @return boolean |
|
250 | + * @return boolean|null |
|
251 | 251 | */ |
252 | 252 | protected function injectExceptionInjection(& $bucketData, $functionName) |
253 | 253 | { |
@@ -162,7 +162,7 @@ |
||
162 | 162 | * |
163 | 163 | * @param string $docBlock DocBloc to filter |
164 | 164 | * |
165 | - * @return boolean|string |
|
165 | + * @return string |
|
166 | 166 | */ |
167 | 167 | protected function filterLocalProcessing($docBlock) |
168 | 168 | { |
@@ -21,7 +21,6 @@ |
||
21 | 21 | namespace AppserverIo\Doppelgaenger\StreamFilters; |
22 | 22 | |
23 | 23 | use AppserverIo\Doppelgaenger\Entities\Definitions\FunctionDefinition; |
24 | -use AppserverIo\Doppelgaenger\Entities\Lists\TypedListList; |
|
25 | 24 | use AppserverIo\Doppelgaenger\Exceptions\GeneratorException; |
26 | 25 | use AppserverIo\Doppelgaenger\Dictionaries\Placeholders; |
27 | 26 | use AppserverIo\Doppelgaenger\Dictionaries\ReservedKeywords; |
@@ -26,7 +26,6 @@ |
||
26 | 26 | use AppserverIo\Doppelgaenger\Dictionaries\ReservedKeywords; |
27 | 27 | use AppserverIo\Doppelgaenger\Interfaces\StructureDefinitionInterface; |
28 | 28 | use AppserverIo\Doppelgaenger\Utils\Parser; |
29 | -use AppserverIo\Doppelgaenger\Entities\Definitions\ClassDefinition; |
|
30 | 29 | use AppserverIo\Doppelgaenger\Entities\Definitions\InterfaceDefinition; |
31 | 30 | use AppserverIo\Doppelgaenger\Entities\Definitions\TraitDefinition; |
32 | 31 |