Completed
Push — develop ( af8557...cd49dc )
by
unknown
07:16
created
module/Jobs/src/Jobs/Controller/ManageController.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -148,12 +148,12 @@  discard block
 block discarded – undo
148 148
         $jobEntity = $this->initializeJob()->get($this->params(), true);
149 149
 
150 150
         $model = new ViewModel([
151
-                                   'portals' => $jobEntity->getPortals(),
152
-                                   'channels' => $channels,
153
-                                   'defaultCurrencyCode' => $options->defaultCurrencyCode,
154
-                                   'defaultTaxRate' =>  $options->defaultTaxRate,
155
-                                   'jobId' => $jobEntity->getId()
156
-                               ]);
151
+                                    'portals' => $jobEntity->getPortals(),
152
+                                    'channels' => $channels,
153
+                                    'defaultCurrencyCode' => $options->defaultCurrencyCode,
154
+                                    'defaultTaxRate' =>  $options->defaultTaxRate,
155
+                                    'jobId' => $jobEntity->getId()
156
+                                ]);
157 157
         $model->setTemplate('jobs/partials/channel-list')->setTerminal(true);
158 158
         return $model;
159 159
     }
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
             'lang/jobs/view',
514 514
             array(),
515 515
             array('query' => $query
516
-                      )
516
+                        )
517 517
         );
518 518
 
519 519
         $approvalLink = $this->url()->fromRoute(
@@ -529,10 +529,10 @@  discard block
 block discarded – undo
529 529
         );
530 530
 
531 531
         return array('job' => $jobEntity,
532
-                     'diffSnapshot' => $diff,
533
-                     'viewLink' => $viewLink,
534
-                     'approvalLink' => $approvalLink,
535
-                     'declineLink' => $declineLink);
532
+                        'diffSnapshot' => $diff,
533
+                        'viewLink' => $viewLink,
534
+                        'approvalLink' => $approvalLink,
535
+                        'declineLink' => $declineLink);
536 536
     }
537 537
 
538 538
     /**
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Options/BaseFieldsetOptions.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      *
33 33
      * @var array
34 34
      */
35
-   protected $fields=[
35
+    protected $fields=[
36 36
         self::TITLE => [
37 37
             'enabled' => true,
38 38
             'options' => [
Please login to merge, or discard this patch.
module/Core/src/Core/Form/View/Helper/SearchForm.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
         $content = $this->renderElements($form, $colMap, $buttonsSpan);
67 67
 
68 68
         return $this->openTag($form)
69
-             . '<div class="row" style="padding: 0 15px;">'
70
-             . $content . '</div>' . $this->closeTag();
69
+                . '<div class="row" style="padding: 0 15px;">'
70
+                . $content . '</div>' . $this->closeTag();
71 71
 
72 72
     }
73 73
 
@@ -109,15 +109,15 @@  discard block
 block discarded – undo
109 109
 
110 110
             if ($element->getName() == $form->getButtonElement()) {
111 111
                 $content.='<div class="input-group col-md-' . $cols . '">'
112
-                              . $formElement($element)
113
-                              . '<div class="input-group-btn search-form-buttons" style="width: 1px;">'
114
-                              . $this->renderButtons($form->getButtons()) . '</div>'
115
-                              . '</div>';
112
+                                . $formElement($element)
113
+                                . '<div class="input-group-btn search-form-buttons" style="width: 1px;">'
114
+                                . $this->renderButtons($form->getButtons()) . '</div>'
115
+                                . '</div>';
116 116
                 $buttonsRendered = true;
117 117
             } else {
118 118
                 $content .= '<div class="input-group col-md-' . $cols . '">'
119
-                          . $formElement($element)
120
-                          . '</div>';
119
+                            . $formElement($element)
120
+                            . '</div>';
121 121
             }
122 122
 
123 123
             $i += 1;
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                 $buttonsSpan = $form->getOption('buttons_span') ?: 12;
129 129
             }
130 130
             $content .= '<div class="input-group search-form-buttons col-md-' . $buttonsSpan . ' text-right">'
131
-                      . '<div class="btn-group">' . $this->renderButtons($form->getButtons()) .'</div></div>';
131
+                        . '<div class="btn-group">' . $this->renderButtons($form->getButtons()) .'</div></div>';
132 132
         }
133 133
 
134 134
         return $content;
Please login to merge, or discard this patch.
module/Geo/Module.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,11 +18,11 @@
 block discarded – undo
18 18
  */
19 19
 class Module
20 20
 {
21
-     /**
22
-     * Loads module specific configuration.
23
-     *
24
-     * @return array
25
-     */
21
+        /**
22
+         * Loads module specific configuration.
23
+         *
24
+         * @return array
25
+         */
26 26
     public function getConfig()
27 27
     {
28 28
         return include __DIR__ . '/config/module.config.php';
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/View/Helper/ApplyUrlFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,9 +45,9 @@
 block discarded – undo
45 45
         $params    = $container->get('params');
46 46
         $serverUrl = $container->get('serverUrl');
47 47
         $helper->setUrlHelper($url)
48
-               ->setTranslateHelper($translate)
49
-               ->setParamsHelper($params)
50
-               ->setServerUrlHelper($serverUrl);
48
+                ->setTranslateHelper($translate)
49
+                ->setParamsHelper($params)
50
+                ->setServerUrlHelper($serverUrl);
51 51
         return $helper;
52 52
     }
53 53
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/View/Helper/JobUrlFactory.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@
 block discarded – undo
45 45
         $params    = $container->get('params');
46 46
         $serverUrl = $container->get('serverUrl');
47 47
         $helper->setUrlHelper($url)
48
-               ->setParamsHelper($params)
49
-               ->setServerUrlHelper($serverUrl);
48
+                ->setParamsHelper($params)
49
+                ->setServerUrlHelper($serverUrl);
50 50
         return $helper;
51 51
     }
52 52
 
Please login to merge, or discard this patch.
module/Auth/src/Auth/Factory/Form/Element/UserSearchbarFactory.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,6 @@
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-
63 62
      *
64 63
      * {@inheritdoc}
65 64
      */
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/Paginator/RepositoryAbstractFactory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
      */
146 146
     public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName)
147 147
     {
148
-       return $this($serviceLocator,$requestedName);
148
+        return $this($serviceLocator,$requestedName);
149 149
     }
150 150
 
151 151
     /**
Please login to merge, or discard this patch.
src/Applications/Repository/Event/UpdateFilesPermissionsSubscriber.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
                
57 57
                 foreach ($document->getAttachments() as $attachment) {  /* @var \Applications\Entity\Attachment $attachment */
58 58
                     $attachment->getPermissions()
59
-                               ->clear()
60
-                               ->inherit($permissions);
59
+                                ->clear()
60
+                                ->inherit($permissions);
61 61
                     if ($isUpdate) {
62 62
                         $uow->computeChangeSet(
63 63
                             $dm->getClassMetadata(get_class($attachment)),
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
                 
69 69
                 if ($image = $document->getContact()->getImage()) {
70 70
                     $image->getPermissions()
71
-                          ->clear()
72
-                          ->inherit($permissions);
71
+                            ->clear()
72
+                            ->inherit($permissions);
73 73
                     if ($isUpdate) {
74 74
                         $uow->computeChangeSet(
75 75
                             $dm->getClassMetadata(get_class($image)),
Please login to merge, or discard this patch.