Completed
Push — 8.x-1.x ( 59e77e...5ec7b0 )
by Janez
03:12
created
src/Entity/CropType.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 namespace Drupal\crop\Entity;
9 9
 
10 10
 use Drupal\Core\Config\Entity\ConfigEntityBundleBase;
11
-use Drupal\Core\Entity\EntityConstraintViolationList;
12 11
 use Drupal\crop\CropTypeInterface;
13 12
 use Symfony\Component\Validator\ConstraintViolationList;
14 13
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
    */
108 108
   public static function getCropTypeNames() {
109 109
     return array_map(
110
-      function ($bundle_info) { return $bundle_info['label'];},
110
+      function($bundle_info) { return $bundle_info['label']; },
111 111
       \Drupal::entityManager()->getBundleInfo('crop')
112 112
     );
113 113
   }
Please login to merge, or discard this patch.
src/Form/CropTypeForm.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,8 +128,7 @@
 block discarded – undo
128 128
 
129 129
     if ($status == SAVED_UPDATED) {
130 130
       drupal_set_message(t('The crop type %name has been updated.', $t_args));
131
-    }
132
-    elseif ($status == SAVED_NEW) {
131
+    } elseif ($status == SAVED_NEW) {
133 132
       drupal_set_message(t('The crop type %name has been added.', $t_args));
134 133
       $context = array_merge($t_args, array('link' => $this->l(t('View'), new Url('crop.overview_types'))));
135 134
       $this->logger('crop')->notice('Added crop type %name.', $context);
Please login to merge, or discard this patch.
src/CropTypeListBuilder.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -139,8 +139,7 @@
 block discarded – undo
139 139
     $other_image_styles = array_splice($image_styles, 2);
140 140
     if ($other_image_styles) {
141 141
       $usage_message = t('@first, @second and @count more', ['@first' => $usage[0], '@second' => $usage[1], '@count' => count($other_image_styles)]);
142
-    }
143
-    else {
142
+    } else {
144 143
       $usage_message = implode(', ', $usage);
145 144
     }
146 145
     $row['usage']['data']['#markup'] = $usage_message;
Please login to merge, or discard this patch.
src/CropInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
    * @return \Drupal\crop\CropInterface
54 54
    *   Crop object this is being called on.
55 55
    */
56
-   public function setSize($width, $height);
56
+    public function setSize($width, $height);
57 57
 
58 58
   /**
59 59
    * Gets crop anchor (top-left corner of crop area).
Please login to merge, or discard this patch.