Completed
Push — master ( dd98a7...a98764 )
by diego
10s
created
Classes/Service/Targets/ExtbaseModel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
     {
137 137
         $configuration = $this->getConfiguration();
138 138
         /**
139
- * @var \TYPO3\CMS\Extbase\DomainObject\AbstractEntity $model
139
+         * @var \TYPO3\CMS\Extbase\DomainObject\AbstractEntity $model
140 140
 */
141 141
         $model = new $configuration['model'];
142 142
         $model->setPid($configuration['pid']);
Please login to merge, or discard this patch.
Classes/Service/Manager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         $resources = $this->initializeResources($strategy, $filepath);
87 87
         foreach ($resources as $resource) {
88 88
             /**
89
- * @var \HDNET\Importr\Service\Resources\ResourceInterface $resource
89
+             * @var \HDNET\Importr\Service\Resources\ResourceInterface $resource
90 90
 */
91 91
             // Resourcen Object anhand der Datei auswählen
92 92
             if (preg_match($resource->getFilepathExpression(), $filepath)) {
Please login to merge, or discard this patch.
Classes/Service/Targets/InsertUpdateTable.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -218,12 +218,12 @@  discard block
 block discarded – undo
218 218
     }
219 219
     
220 220
     /**
221
-    * This function takes a password as argument, salts it and returns the new password.
222
-    *
223
-    * @param string $password
224
-    *
225
-    * @return string
226
-    */
221
+     * This function takes a password as argument, salts it and returns the new password.
222
+     *
223
+     * @param string $password
224
+     *
225
+     * @return string
226
+     */
227 227
     protected function SaltPassword($password)
228 228
     {
229 229
         if (\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::isLoaded('saltedpasswords')) {
@@ -241,12 +241,12 @@  discard block
 block discarded – undo
241 241
     }
242 242
     
243 243
     /**
244
-    * This function checks if a password is in md5 format.
245
-    *
246
-    * @param string $md5
247
-    *
248
-    * @return int
249
-    */
244
+     * This function checks if a password is in md5 format.
245
+     *
246
+     * @param string $md5
247
+     *
248
+     * @return int
249
+     */
250 250
     protected function isValidMd5($md5 = '')
251 251
     {
252 252
         return preg_match('/^[a-f0-9]{32}$/', $md5);
Please login to merge, or discard this patch.