@@ -76,7 +76,7 @@ |
||
76 | 76 | |
77 | 77 | // create an empty collection if no plugins has been specified |
78 | 78 | if ($this->plugins === null) { |
79 | - $this->plugins= new ArrayCollection(); |
|
79 | + $this->plugins = new ArrayCollection(); |
|
80 | 80 | } |
81 | 81 | } |
82 | 82 |
@@ -109,7 +109,7 @@ |
||
109 | 109 | /** |
110 | 110 | * Return's the reference to the configuration instance. |
111 | 111 | * |
112 | - * @return \TechDivision\Import\ConfigurationInterface The configuration instance |
|
112 | + * @return string The configuration instance |
|
113 | 113 | */ |
114 | 114 | public function getConfiguration() |
115 | 115 | { |
@@ -29,7 +29,6 @@ |
||
29 | 29 | use TechDivision\Import\Configuration\ListenerAwareConfigurationInterface; |
30 | 30 | use TechDivision\Import\Configuration\Jms\Configuration\Subject\ImportAdapter; |
31 | 31 | use TechDivision\Import\Configuration\Jms\Configuration\Subject\ExportAdapter; |
32 | -use TechDivision\Import\Configuration\SubjectConfigurationInterface; |
|
33 | 32 | |
34 | 33 | /** |
35 | 34 | * A simple plugin configuration implementation. |
@@ -179,7 +179,7 @@ |
||
179 | 179 | /** |
180 | 180 | * Return's the elements the filenames consists of. |
181 | 181 | * |
182 | - * @return array The array with the filename elements |
|
182 | + * @return string The array with the filename elements |
|
183 | 183 | */ |
184 | 184 | public function getPatternElements() |
185 | 185 | { |
@@ -435,7 +435,7 @@ |
||
435 | 435 | /** |
436 | 436 | * Return's the reference to the parent plugin configuration instance. |
437 | 437 | * |
438 | - * @return \TechDivision\Import\ConfigurationInterface The parent plugin configuration instance |
|
438 | + * @return PluginConfigurationInterface The parent plugin configuration instance |
|
439 | 439 | */ |
440 | 440 | public function getPluginConfiguration() |
441 | 441 | { |
@@ -18,10 +18,6 @@ |
||
18 | 18 | * @link http://www.techdivision.com |
19 | 19 | */ |
20 | 20 | |
21 | -use Lurker\Event\FilesystemEvent; |
|
22 | - |
|
23 | -use Symfony\Component\Finder\Finder; |
|
24 | - |
|
25 | 21 | /** |
26 | 22 | * Defines the available build tasks. |
27 | 23 | * |
@@ -1248,7 +1248,7 @@ |
||
1248 | 1248 | /** |
1249 | 1249 | * Whether or not the files should be moved from the source to the target directory. |
1250 | 1250 | * |
1251 | - * @return TRUE if the files should be moved, FALSE otherwise |
|
1251 | + * @return boolean if the files should be moved, FALSE otherwise |
|
1252 | 1252 | */ |
1253 | 1253 | public function shouldMoveFiles() |
1254 | 1254 | { |
@@ -35,8 +35,6 @@ |
||
35 | 35 | use TechDivision\Import\Configuration\ListenerAwareConfigurationInterface; |
36 | 36 | use TechDivision\Import\Utils\OperationKeys; |
37 | 37 | use TechDivision\Import\Configuration\OperationConfigurationInterface; |
38 | -use TechDivision\Import\Configuration\Jms\Configuration\Plugin; |
|
39 | -use TechDivision\Import\Configuration\Jms\Configuration\Subject; |
|
40 | 38 | |
41 | 39 | /** |
42 | 40 | * A simple JMS based configuration implementation. |