Passed
Push — master ( 2dd807...470cd2 )
by Jan
04:52
created
src/Form/AdminPages/SupplierForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             'required' => false,
44 44
             'label' => 'supplier.edit.default_currency',
45 45
             'disable_not_selectable' => true,
46
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'move', $entity),
46
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'move', $entity),
47 47
         ]);
48 48
 
49 49
         $builder->add('shipping_costs', MoneyType::class, [
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             'currency' => $this->params->get('default_currency'),
52 52
             'scale' => 3,
53 53
             'label' => 'supplier.shipping_costs.label',
54
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'move', $entity),
54
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'move', $entity),
55 55
         ]);
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
src/Form/AdminPages/AttachmentTypeAdminForm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,15 +54,15 @@
 block discarded – undo
54 54
                 'placeholder' => 'attachment_type.edit.filetype_filter.placeholder',
55 55
             ],
56 56
             'empty_data' => '',
57
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
57
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
58 58
         ]);
59 59
 
60 60
         //Normalize data before writing it to database
61 61
         $builder->get('filetype_filter')->addViewTransformer(new CallbackTransformer(
62
-            function ($value) {
62
+            function($value) {
63 63
                 return $value;
64 64
             },
65
-            function ($value) {
65
+            function($value) {
66 66
                 return $this->filterTools->normalizeFilterString($value);
67 67
             }
68 68
         ));
Please login to merge, or discard this patch.
src/Form/AdminPages/StorelocationAdminForm.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
             'label_attr' => [
44 44
                 'class' => 'checkbox-custom',
45 45
             ],
46
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'move', $entity),
46
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'move', $entity),
47 47
         ]);
48 48
 
49 49
         $builder->add('limit_to_existing_parts', CheckboxType::class, [
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             'label_attr' => [
54 54
                 'class' => 'checkbox-custom',
55 55
             ],
56
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'move', $entity),
56
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'move', $entity),
57 57
         ]);
58 58
 
59 59
         $builder->add('only_single_part', CheckboxType::class, [
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
             'label_attr' => [
64 64
                 'class' => 'checkbox-custom',
65 65
             ],
66
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'move', $entity),
66
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'move', $entity),
67 67
         ]);
68 68
 
69 69
         $builder->add('storage_type', StructuralEntityType::class, [
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             'help' => 'storelocation.storage_type.help',
73 73
             'class' => MeasurementUnit::class,
74 74
             'disable_not_selectable' => true,
75
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'move', $entity),
75
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'move', $entity),
76 76
         ]);
77 77
     }
78 78
 }
Please login to merge, or discard this patch.
src/Form/AdminPages/MeasurementUnitAdminForm.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             'label_attr' => [
43 43
                 'class' => 'checkbox-custom',
44 44
             ],
45
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
45
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
46 46
         ]);
47 47
 
48 48
         $builder->add('use_si_prefix', CheckboxType::class, [
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             'label_attr' => [
53 53
                 'class' => 'checkbox-custom',
54 54
             ],
55
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
55
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
56 56
         ]);
57 57
 
58 58
         $builder->add('unit', TextType::class, [
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             'attr' => [
62 62
                 'placeholder' => 'measurement_unit.edit.unit_symbol.placeholder',
63 63
             ],
64
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
64
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
65 65
         ]);
66 66
     }
67 67
 }
Please login to merge, or discard this patch.
src/Form/AdminPages/CompanyForm.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
         $builder->add('address', TextareaType::class, [
41 41
             'label' => 'company.edit.address',
42
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
42
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
43 43
             'attr' => [
44 44
                 'placeholder' => 'company.edit.address.placeholder',
45 45
             ],
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
         $builder->add('phone_number', TelType::class, [
51 51
             'label' => 'company.edit.phone_number',
52
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
52
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
53 53
             'attr' => [
54 54
                 'placeholder' => 'company.edit.phone_number.placeholder',
55 55
             ],
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
         $builder->add('fax_number', TelType::class, [
61 61
             'label' => 'company.edit.fax_number',
62
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
62
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
63 63
             'attr' => [
64 64
                 'placeholder' => 'company.fax_number.placeholder',
65 65
             ],
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
         $builder->add('email_address', EmailType::class, [
71 71
             'label' => 'company.edit.email',
72
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
72
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
73 73
             'attr' => [
74 74
                 'placeholder' => 'company.edit.email.placeholder',
75 75
             ],
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
         $builder->add('website', UrlType::class, [
81 81
             'label' => 'company.edit.website',
82
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
82
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
83 83
             'attr' => [
84 84
                 'placeholder' => 'company.edit.website.placeholder',
85 85
             ],
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $builder->add('auto_product_url', UrlType::class, [
91 91
             'label' => 'company.edit.auto_product_url',
92 92
             'help' => 'company.edit.auto_product_url.help',
93
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
93
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
94 94
             'attr' => [
95 95
                 'placeholder' => 'company.edit.auto_product_url.placeholder',
96 96
             ],
Please login to merge, or discard this patch.
src/Form/AdminPages/CurrencyAdminForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
                 'class' => 'selectpicker',
44 44
                 'data-live-search' => true,
45 45
             ],
46
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
46
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
47 47
         ]);
48 48
 
49 49
         $builder->add('exchange_rate', MoneyType::class, [
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             'label' => 'currency.edit.exchange_rate',
52 52
             'currency' => $this->params->get('default_currency'),
53 53
             'scale' => 6,
54
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
54
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
55 55
         ]);
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
src/Form/AdminPages/MassCreationForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         //Disable import if user is not allowed to create elements.
49 49
         $entity = new $data['entity_class']();
50 50
         $perm_name = 'create';
51
-        $disabled = ! $this->security->isGranted($perm_name, $entity);
51
+        $disabled = !$this->security->isGranted($perm_name, $entity);
52 52
 
53 53
         $builder
54 54
             ->add('lines', TextareaType::class, [
Please login to merge, or discard this patch.
src/Form/AdminPages/GroupAdminForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,13 +42,13 @@
 block discarded – undo
42 42
             'label_attr' => [
43 43
                 'class' => 'checkbox-custom',
44 44
             ],
45
-            'disabled' => ! $this->security->isGranted($is_new ? 'create' : 'edit', $entity),
45
+            'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
46 46
         ]);
47 47
 
48 48
         $builder->add('permissions', PermissionsType::class, [
49 49
             'mapped' => false,
50 50
             'data' => $builder->getData(),
51
-            'disabled' => ! $this->security->isGranted('edit_permissions', $entity),
51
+            'disabled' => !$this->security->isGranted('edit_permissions', $entity),
52 52
         ]);
53 53
     }
54 54
 }
Please login to merge, or discard this patch.
src/Form/Type/MasterPictureAttachmentType.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -45,14 +45,14 @@  discard block
 block discarded – undo
45 45
             'attr' => [
46 46
                 'class' => 'selectpicker',
47 47
             ],
48
-            'choice_attr' => function (Options $options) {
49
-                return  function ($choice, $key, $value) use ($options) {
48
+            'choice_attr' => function(Options $options) {
49
+                return  function($choice, $key, $value) use ($options) {
50 50
                     /** @var Attachment $choice */
51 51
                     $tmp = ['data-subtext' => $choice->getFilename() ?? 'URL'];
52 52
 
53
-                    if ('picture' === $options['filter'] && ! $choice->isPicture()) {
53
+                    if ('picture' === $options['filter'] && !$choice->isPicture()) {
54 54
                         $tmp += ['disabled' => 'disabled'];
55
-                    } elseif ('3d_model' === $options['filter'] && ! $choice->is3DModel()) {
55
+                    } elseif ('3d_model' === $options['filter'] && !$choice->is3DModel()) {
56 56
                         $tmp += ['disabled' => 'disabled'];
57 57
                     }
58 58
 
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
                 };
61 61
             },
62 62
             'choice_label' => 'name',
63
-            'class' => function (Options $options) {
63
+            'class' => function(Options $options) {
64 64
                 $short_class_name = (new ReflectionClass($options['entity']))->getShortName();
65 65
                 //Category becomes CategoryAttachment
66 66
                 return 'App\\Entity\\Attachments\\'.$short_class_name.'Attachment';
67 67
             },
68
-            'query_builder' => function (Options $options) {
69
-                return function (EntityRepository $er) use ($options) {
68
+            'query_builder' => function(Options $options) {
69
+                return function(EntityRepository $er) use ($options) {
70 70
                     $entity = $options['entity'];
71 71
                     if (null === $entity->getID()) {
72 72
                         //This query is always false, so we get empty results
Please login to merge, or discard this patch.