Completed
Pull Request — master (#16)
by Sergii
04:31
created
src/Utils/BaseEntity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,6 +73,6 @@
 block discarded – undo
73 73
             $operation = "/$operation";
74 74
         }
75 75
 
76
-        return $this->entityType() . "/$id$operation";
76
+        return $this->entityType()."/$id$operation";
77 77
     }
78 78
 }
Please login to merge, or discard this patch.
src/Cores/Drupal7Placeholder.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
         $entity = entity_create($entityType, $values);
164 164
 
165 165
         entity_save($entityType, $entity);
166
-        list($entityId, , $bundle) = entity_extract_ids($entityType, $entity);
166
+        list($entityId,, $bundle) = entity_extract_ids($entityType, $entity);
167 167
 
168 168
         return [$entityId, $entityType, $bundle];
169 169
     }
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
     {
268 268
         $file .= '.js';
269 269
         $modulePath = static::drupalGetFilename('module', 'system');
270
-        $destination = dirname($modulePath) . '/' . $file;
270
+        $destination = dirname($modulePath).'/'.$file;
271 271
         $injection = "\ndrupal_add_js('$destination', array('every_page' => TRUE));";
272 272
 
273 273
         if ($delete) {
@@ -277,13 +277,13 @@  discard block
 block discarded – undo
277 277
             $replace = '';
278 278
         } else {
279 279
             static::fileUnmanagedCopy(
280
-                str_replace('Context', 'JavaScript', __DIR__) . '/' . $file,
280
+                str_replace('Context', 'JavaScript', __DIR__).'/'.$file,
281 281
                 $destination,
282 282
                 FILE_EXISTS_REPLACE
283 283
             );
284 284
 
285 285
             $search = 'system_add_module_assets();';
286
-            $replace = $search . $injection;
286
+            $replace = $search.$injection;
287 287
         }
288 288
 
289 289
         file_put_contents($modulePath, str_replace($search, $replace, file_get_contents($modulePath)));
Please login to merge, or discard this patch.
src/Context/RawTqContext.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
     {
281 281
         // Obtain base URL when path is empty, or not starts from "//" or "http".
282 282
         if (empty($path) || strpos($path, '//') !== 0 && strpos($path, 'http') !== 0) {
283
-            $path = rtrim($this->getMinkParameter('base_url'), '/') . '/' . ltrim($path, '/');
283
+            $path = rtrim($this->getMinkParameter('base_url'), '/').'/'.ltrim($path, '/');
284 284
         }
285 285
 
286 286
         $url = parse_url(strtolower($path));
@@ -299,13 +299,13 @@  discard block
 block discarded – undo
299 299
             throw new \InvalidArgumentException(sprintf('%s - is not valid scheme.', $url['scheme']));
300 300
         }
301 301
 
302
-        $path = $url['scheme'] . '://';
302
+        $path = $url['scheme'].'://';
303 303
 
304 304
         if (isset($url['user'], $url['pass'])) {
305 305
             // Encode special characters in username and password. Useful
306 306
             // when some item contain something like "@" symbol.
307 307
             foreach (['user' => ':', 'pass' => '@'] as $part => $suffix) {
308
-                $path .= rawurlencode($url[$part]) . $suffix;
308
+                $path .= rawurlencode($url[$part]).$suffix;
309 309
             }
310 310
         }
311 311
 
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
         // Append additional URL components.
315 315
         foreach (['port' => ':', 'path' => '', 'query' => '?', 'fragment' => '#'] as $part => $prefix) {
316 316
             if (isset($url[$part])) {
317
-                $path .= $prefix . $url[$part];
317
+                $path .= $prefix.$url[$part];
318 318
             }
319 319
         }
320 320
 
Please login to merge, or discard this patch.