Completed
Push — body_search ( 2c1733 )
by Rafał
11:17
created
src/SWP/Bundle/MultiTenancyBundle/Command/CreateOrganizationCommand.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,6 @@
 block discarded – undo
129 129
 
130 130
     /**
131 131
      * @param string $name
132
-     * @param bool   $disabled
133 132
      *
134 133
      * @return OrganizationInterface
135 134
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
     {
112 112
         if (!$input->getArgument($name)) {
113 113
             $question = new Question(sprintf('<question>Please enter %s:</question>', $name));
114
-            $question->setValidator(function ($argument) use ($name) {
114
+            $question->setValidator(function($argument) use ($name) {
115 115
                 if (empty($argument)) {
116 116
                     throw new \RuntimeException(sprintf('The %s can not be empty', $name));
117 117
                 }
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentListBundle/Form/Type/ContentListType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,10 +64,10 @@
 block discarded – undo
64 64
 
65 65
         $builder->get('filters')
66 66
             ->addModelTransformer(new CallbackTransformer(
67
-                function ($value) {
67
+                function($value) {
68 68
                     return json_encode($value);
69 69
                 },
70
-                function ($value) {
70
+                function($value) {
71 71
                     if (is_array($value)) {
72 72
                         return $value;
73 73
                     }
Please login to merge, or discard this patch.
src/SWP/Bundle/SettingsBundle/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                             ->scalarNode('value')
77 77
                                 ->beforeNormalization()
78 78
                                 ->ifArray()
79
-                                ->then(function ($value) {
79
+                                ->then(function($value) {
80 80
                                     return json_encode($value);
81 81
                                 })
82 82
                                 ->end()
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                             ->scalarNode('type')
86 86
                                 ->defaultValue('string')
87 87
                                 ->validate()
88
-                                    ->always(function ($v) {
88
+                                    ->always(function($v) {
89 89
                                         if (!in_array($v, ['string', 'array', 'boolean'])) {
90 90
                                             throw new InvalidTypeException();
91 91
                                         }
Please login to merge, or discard this patch.
src/SWP/Bundle/SettingsBundle/Form/Type/SettingType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,10 +40,10 @@
 block discarded – undo
40 40
         ;
41 41
 
42 42
         $builder->get('value')->addModelTransformer(new CallbackTransformer(
43
-            function ($value) {
43
+            function($value) {
44 44
                 return $value;
45 45
             },
46
-            function ($value) {
46
+            function($value) {
47 47
                 $allowed = ['true', 'false', '1', '0', null];
48 48
 
49 49
                 if (\is_bool($value) || \in_array($value, $allowed, true)) {
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Installer/TenantAwareThemeInstaller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
     {
109 109
         $themes = \array_filter(
110 110
             $this->themeLoader->load(),
111
-            function ($element) use (&$themeName) {
111
+            function($element) use (&$themeName) {
112 112
                 return $element->getName() === $themeName;
113 113
             }
114 114
         );
Please login to merge, or discard this patch.
src/SWP/Bundle/MultiTenancyBundle/Form/Type/TenantChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public function configureOptions(OptionsResolver $resolver)
58 58
     {
59 59
         $resolver->setDefaults([
60
-            'choices' => function (Options $options) {
60
+            'choices' => function(Options $options) {
61 61
                 return $this->tenantRepository->findAll();
62 62
             },
63 63
             'choice_value' => 'code',
Please login to merge, or discard this patch.
src/SWP/Bundle/ContentBundle/Hydrator/ArticleHydrator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             $items = $this->filterTextItems($package->getItems());
92 92
 
93 93
             $map = $items->map(
94
-                function (ItemInterface $item) {
94
+                function(ItemInterface $item) {
95 95
                     return ' '.$item->getDescription();
96 96
                 }
97 97
             );
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     {
112 112
         $items = $this->filterTextItems($package->getItems());
113 113
 
114
-        $authors = array_filter(array_values(array_map(function (ItemInterface $item) {
114
+        $authors = array_filter(array_values(array_map(function(ItemInterface $item) {
115 115
             $metadata = $item->getMetadata();
116 116
 
117 117
             return $metadata['byline'];
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     private function filterTextItems(Collection $items)
133 133
     {
134 134
         return $items->filter(
135
-            function (ItemInterface $item) {
135
+            function(ItemInterface $item) {
136 136
                 $this->ensureTypeIsAllowed($item->getType());
137 137
 
138 138
                 return ItemInterface::TYPE_TEXT === $item->getType();
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      */
148 148
     private function populateBody(PackageInterface $package)
149 149
     {
150
-        return $package->getBody().' '.implode('', array_map(function (ItemInterface $item) {
150
+        return $package->getBody().' '.implode('', array_map(function(ItemInterface $item) {
151 151
             $this->ensureTypeIsAllowed($item->getType());
152 152
 
153 153
             return $item->getBody();
Please login to merge, or discard this patch.
src/SWP/Component/Bridge/Model/AuthorsAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
     public function getAuthorsNames(): array
55 55
     {
56
-        return array_map(function ($author) {
56
+        return array_map(function($author) {
57 57
             return $author->getName();
58 58
         }, $this->authors->toArray());
59 59
     }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Theme/Service/ThemeService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      * @param TenantContextInterface             $tenantContext
77 77
      * @param ReloadableThemeRepositoryInterface $themeRepository
78 78
      * @param TenantAwareThemeContextInterface   $themeContext
79
-     * @param TenantRepositoryInterface          $tenantRepositorys
79
+     * @param TenantRepositoryInterface          $tenantRepository
80 80
      */
81 81
     public function __construct(
82 82
         ThemeInstallerInterface $themeInstaller,
Please login to merge, or discard this patch.